h5 中MP3 播放暂停 jq

Posted 面朝阳光/

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了h5 中MP3 播放暂停 jq相关的知识,希望对你有一定的参考价值。

<!--音乐-->
		<div id="music">
			<img src="../img/music.gif" class="m" />
			<img src="../img/music_off.png" class="off" />
			<!--<audio src="../mp3/bgmusic.mp3" loop="loop" preload="auto" autoplay="autoplay" class="bgmusic">你的浏览器不支持audio标签。</audio>-->
		</div>
		<!--end-->

  

#music {
	width: 0.8rem;
	height: 0.8rem;
	position: fixed;
	top: 0.2rem;
	right: 0.3rem;
	z-index: 9999;
	background-size: contain;
	text-align: center;
}

@keyframes music {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

#music img.m{
	width: 100%;
	height: 100%;
}

#music img.off {
	position: absolute;
	top: 25%;
	left: 25%;
	transform: translateX(-50%);
	animation: music 2s linear infinite;
}

  

<script type="text/javascript">
			$(function(){
				var play=true;
				$("#music").click(function(e){
					if(play==true){
						$(".m").hide();
						$(".off").css({
							"transform":"rotate(0deg)",
							"animation":"music 0s"
						})
						$(".bgmusic").get(0).pause();
						play=false;
					}else{
						$(".m").show();
						$(".off").css({
							"animation":"music 2s linear infinite"
						})
						$(".bgmusic").get(0).play()
						play=true;
					}
				})
			})
		</script>

  

以上是关于h5 中MP3 播放暂停 jq的主要内容,如果未能解决你的问题,请参考以下文章

当我点击播放按钮更多然后在我的MP3播放器中我的应用程序崩溃

音乐播放制作(html css js)

在网页上播放/暂停/倒带 mp3 音频

Java MP3 播放器 - 使用 jLayer 播放、暂停和查找无法按预期工作

将播放按钮更改为单击时暂停

使用 iPhone SDK 播放 MP3 文件 [关闭]