audioplayer.css 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. .audiobox{background: #f8fcff;border:1px solid #ddeeff;border-radius: 8px;padding:25px 15px 20px;position: relative;}
  2. .audiotitle{
  3. font-size: 14px;
  4. color: #666;
  5. position: absolute;
  6. left: 55px;
  7. right: 0px;
  8. top: 10px;
  9. overflow: hidden;
  10. text-overflow: ellipsis;
  11. display: -webkit-box;
  12. -webkit-box-orient: vertical;
  13. -webkit-line-clamp:1;
  14. padding:0 10px;
  15. }
  16. .audioplayer-volume{display: none;}
  17. .audioplayer-bar-played{background: #3399ff;z-index: 2;position: relative;}
  18. .audioplayer-bar-played:before{
  19. content: '';
  20. position: absolute;
  21. width: 9px;
  22. height: 9px;
  23. right: 0;
  24. background: #3399ff;
  25. margin-left: -4px;
  26. border-radius: 50%;
  27. margin-top: -3px;
  28. top: 0;
  29. }
  30. .audioplayer-time-current{right: 50px;}
  31. .audioplayer-time-duration{right: 0;}
  32. .audioplayer-bar
  33. {
  34. height: 3px; /* 14 */
  35. cursor: pointer;
  36. z-index: 1;
  37. top: 50%;
  38. right: 0px; /* 110 */
  39. left: 55px; /* 110 */
  40. background: #e7e7e7;
  41. margin-top: -1px;
  42. }
  43. .audioplayer-playpause
  44. {
  45. width: 32px;
  46. height: 32px;
  47. text-align: left;
  48. text-indent: -9999px;
  49. cursor: pointer;
  50. z-index: 2;
  51. top: 0;
  52. left: 0;
  53. }
  54. .audioplayer-time
  55. {
  56. z-index: 2;
  57. bottom: -15px;
  58. width: 50px;
  59. }
  60. .audioplayer:not(.audioplayer-playing) .audioplayer-playpause a{
  61. display: block;
  62. width: 32px;
  63. height: 32px;
  64. background: url(../images/play.png) no-repeat center center/32px 32px;
  65. }
  66. .audioplayer-playing .audioplayer-playpause a{
  67. display: block;
  68. width: 32px;
  69. height: 32px;
  70. background: url(../images/noplay.png) no-repeat center center/32px 32px;
  71. }
  72. .audioplayer{
  73. position: relative;
  74. z-index: 1;
  75. height: 32px;
  76. text-align: right;
  77. font-size: 14px;
  78. color: #666;
  79. }
  80. .audioplayer > div
  81. {
  82. position: absolute;
  83. }
  84. .audioplayer-bar div
  85. {
  86. width: 0;
  87. height: 100%;
  88. position: absolute;
  89. left: 0;
  90. top: 0;
  91. }
  92. .audioplayer-bar-loaded
  93. {
  94. background-color: #93c9ff;
  95. z-index: 1;
  96. }