码迷,mamicode.com
首页 > 其他好文 > 详细

页面添加h5背景音乐

时间:2017-09-12 10:40:16      阅读:458      评论:0      收藏:0      [点我收藏+]

标签:cti   mat   script   暂停   ati   element   init   orm   oop   

<div id="audio_btn" class="rotate">
    <audio loop src="bg_audio.mp3" id="media" autoplay="" preload=""></audio>
</div>

#audio_btn {
     width: 30px;
     height: 30px;
     background-image: url(normalmusic.svg);
     background-size: contain;
 }
 
 .rotate {
    -webkit-animation: rotating 1.2s linear infinite;
     -moz-animation: rotating 1.2s linear infinite;
     -o-animation: rotating 1.2s linear infinite;
     animation: rotating 1.2s linear infinite
 }
 
 @-webkit-keyframes rotating {
     from { -webkit-transform: rotate(0) }
     to { -webkit-transform: rotate(360deg) }
 }
 
 @keyframes rotating {
     from { transform: rotate(0) }
     to { transform: rotate(360deg) }
 }
 @-moz-keyframes rotating {
     from { -moz-transform: rotate(0) }
     to { -moz-transform: rotate(360deg) }
 }



$("#audio_btn").click(function(){
     $(this).toggleClass("rotate"); //控制音乐图标 自转或暂停
 })
var x = document.getElementById("media"); 
 $(function(){
     $("#audio_btn").click(function(){
         $(this).toggleClass("rotate"); //控制音乐图标 自转或暂停
         
         //控制背景音乐 播放或暂停            
         if($(this).hasClass("rotate")){
             x.play();
         }else{
             x.pause();
         }
     })
 });

  

页面添加h5背景音乐

标签:cti   mat   script   暂停   ati   element   init   orm   oop   

原文地址:http://www.cnblogs.com/zhangrenjie/p/7508770.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!