music.css 819 B

123456789101112131415
  1. /* music */
  2. @-webkit-keyframes reverseRotataZ{
  3. 0%{-webkit-transform: rotateZ(0deg);}
  4. 100%{-webkit-transform: rotateZ(-360deg);}
  5. }
  6. @-webkit-keyframes rotataZ{
  7. 0%{-webkit-transform: rotateZ(0deg);}
  8. 100%{-webkit-transform: rotateZ(360deg);}
  9. }
  10. #musicControl { position:fixed;right:10px;top:20px;margin-top:0;display:inline-block;z-index:99999999}
  11. #musicControl a { display:inline-block;width:25px;height:25px;overflow:hidden;background:url('../img/play.png') no-repeat;background-size:100%;}
  12. #musicControl a audio{width:100%;height:56px;}
  13. #musicControl a.stop { background-position:left bottom;}
  14. #musicControl a.on { background-position:0px 1px;-webkit-animation: reverseRotataZ 1.2s linear infinite;}
  15. #music_play_filter{width:100%;height:100%;overflow:hidden;position:fixed;top:0;left:0;z-index:99999998;}