1.使用HTML5的audio标签 (音频播放)
<audio id="click-sound">
<source src="audio/show.mp3" type="audio/mpeg">
</audio>
<button id="button">按钮</button>
var clickSound = document.getElementById("click-sound");
var button = document.getElementById("button");
button.addEventListener("click", function() {
clickSound.play();
});
2.使用HTML5的video标签(视频播放)
<video id="my-video" controls>
<source src="http://clips.vorwaerts-gmbh.de/big_buck_bunny.mp4" type="video/mp4">
</video>
var myVideo = document.getElementById("my-video");
// 播放视频
myVideo.play();
// 暂停视频
// myVideo.pause();
// 设置视频播放位置(单位:秒)
// myVideo.currentTime = 30;
// 设置视频音量(0-1之间的小数)
myVideo.volume = 0.5;
3.分类切换
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script src="js/jquery-3.6.1.js"></script>
<style>
#scroll-container {
width: 100%;
height: 30px;
overflow: scroll;
-webkit-overflow-scrolling: touch;
}
#scroll-content {
white-space: nowrap;
display: flex;
align-items: center;
padding: 0 20px;
}
.category {
flex: 0 0 auto;
margin-right: 20px;
padding: 5px 10px;
border-radius: 20px;
background-color: #f0f0f0;
cursor: pointer;
}
.category.active {
background-color: #007bff;
color: #fff;
}
</style>
<script src="js/jquery-3.6.1.js"></script>
</head>
<body>
<div id="scroll-container">
<div id="scroll-wrap">
<div id="scroll-content">
<div class="category">分类1</div>
<div class="category">分类2</div>
<div class="category">分类3</div>
<div class="category">分类4</div>
<div class="category">分类5</div>
<div class="category">分类6</div>
<div class="category">分类7</div>
<div class="category">分类8</div>
<div class="category">分类9</div>
<div class="category">分类10</div>
</div>
</div>
</div>
<script type="text/javascript">
var scrollContainer = $("#scroll-container");
var scrollWrap = $("#scroll-wrap");
var scrollContent = $("#scroll-content");
$("#scroll-content").on("click", ".category", function() {
var $this = $(this);
// 判断点击的是不是可见视图的最后一个标题
if ($this.is(":last-child")) {
// 将最后一个标题移动到开头
$this.prependTo($this.parent());
// 将内容滚动到用户可见的页面上,确保移动到开头的标题出现在可见视图中
var contentWidth = scrollContent.width();
var visibleWidth = scrollWrap.width();
var scrollLeft = scrollContent.scrollLeft();
if (scrollLeft > contentWidth - visibleWidth) {
scrollContent.scrollLeft(contentWidth - visibleWidth);
}
}
});
// 获取所有分类标题
var categories = $(".category");
// 给每个分类标题添加点击事件
categories.on("click", function() {
// 取消其他分类的选中状态
categories.removeClass("active");
// 选中当前分类,并滚动到它的位置
$(this).addClass("active");
var index = categories.index(this);
scrollContent.stop().animate({scrollLeft: index * (this.offsetWidth + 20)}, 500);
});
</script>
</body>
</html>
原文地址:https://blog.csdn.net/rr20060119/article/details/134173794
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若转载,请注明出处:http://www.7code.cn/show_50479.html
如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱:suwngjj01@126.com进行投诉反馈,一经查实,立即删除!
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。