H5页面添加背景音乐播放功能,可暂停

html:

    <span id="musicControl">
        <a id="mc_play" class="on">
            <audio id="musicfx" loop="loop" autoplay="autoplay">
                <source src="./music/music.mp3" type="audio/mpeg" id="hhh">
            </audio>
        </a>
    </span>

css

@-webkit-keyframes reverseRotataZ {
    0%{
        -webkit-transform: rotateZ(0deg);
    }
    100%{
        -webkit-transform: rotateZ(-360deg);
    }
}
@-webkit-keyframes rotataZ{
 0% {
     -webkit-transform: rotateZ(0deg);
    }
 100% {
     -webkit-transform: rotateZ(360deg);
    }
}
#musicControl { 
    position:fixed;
    right:10px;
    top:20px;
    margin-top:0;
    display:inline-block;
    z-index:99999999
}
#musicControl a { 
    display:inline-block;
    width: 25px; 
    height: 25px;
    overflow:hidden;
    background:url('../images/mcbg.png') no-repeat;
    background-size:100%;
}
#musicControl a audio{
    width:100%;
    height:56px;
}
#musicControl a.stop { 
    background-position:left bottom;
}
#musicControl a.on { 
    background-position:0px 1px;
    -webkit-animation: reverseRotataZ 1.2s linear infinite;
}
#music_play_filter{
    width:100%;
    height:100%;
    overflow:hidden;
    position:fixed;
    top:0;
    left:0;
    z-index:99999998;
}

js

    $('#mc_play').click(function () {
        var music = document.getElementById('musicfx');
        if (music.paused) {
            music.play();
            $('#mc_play').attr('class', 'on');
        } else {
            music.pause();
            $('#mc_play').attr('class', 'stop');
        }
    })

图片
在这里插入图片描述

  • 2
    点赞
  • 8
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值