[关闭]
@TerryWan 2016-12-16T10:22:13.000000Z 字数 583 阅读 1188

音效图标旋转函数

工作


  1. .rotate {
  2. position: absolute;
  3. left: 10px;
  4. top: 10px;
  5. width: 30px;
  6. height: 30px;
  7. background-size: 100% 100%;
  8. background-image: url(images/music_on.png);
  9. -webkit-animation: rotating 1.2s linear infinite;
  10. -moz-animation: rotating 1.2s linear infinite;
  11. -o-animation: rotating 1.2s linear infinite;
  12. animation: rotating 1.2s linear infinite;
  13. }
  14. @-webkit-keyframes rotating {
  15. from{
  16. -webkit-transform: rotate(0deg);
  17. }
  18. to{
  19. -webkit-transform: rotate(360deg);
  20. }
  21. }
  22. @keyframes rotating {
  23. from{
  24. transform: rotate(0deg);
  25. }
  26. to{
  27. transform: rotate(360deg);
  28. }
  29. }
  30. @-moz-keyframes rotating {
  31. from{
  32. -moz-transform: rotate(0deg);
  33. }
  34. to{
  35. -moz-transform: rotate(360deg);
  36. }
  37. }
添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注