js代码
<script src="js/jquery-1.8.3.min.js"></script> <script src="js/jquery-PlayBar.min.js"></script> <script> $(function(){ var action=true; $('.contral').click(function(){ if(action){ $.playBar.Stop(); action=false; $(this).html("开始"); }else{ $.playBar.Begin(); action=true; $(this).html("停止"); } }); $.playBar.addBar($('.test'),1000*60);//第一个参数是需要显示播放器的容器,第二个参数为时间,单位毫秒 $.playBar.changeBarColor("#72dfff");//设置进度条颜色 }); </script>