You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

490 lines
7.5 KiB

  1. @mixin textoverflow() {
  2. display: -webkit-box;
  3. overflow: hidden;
  4. text-overflow: ellipsis;
  5. -webkit-box-orient: vertical;
  6. -webkit-line-clamp: 1;
  7. }
  8. @keyframes rowup {
  9. 0% {
  10. -webkit-transform: translate(-50%, -50%) rotate(0deg);
  11. transform-origin: center center;
  12. }
  13. 100% {
  14. -webkit-transform: translate(-50%, -50%) rotate(360deg);
  15. transform-origin: center center;
  16. }
  17. }
  18. .imt-audio.theme1 {
  19. padding: 0 30upx 30upx;
  20. background: #fff;
  21. .top {
  22. & > view:nth-child(2) {
  23. .title {
  24. font-weight: bold;
  25. font-size: 34rpx;
  26. margin-top: 50rpx;
  27. text-align: center;
  28. }
  29. .singer {
  30. color: #999;
  31. font-size: 26rpx;
  32. margin-top: 10rpx;
  33. text-align: center;
  34. margin-bottom: 18rpx;
  35. }
  36. }
  37. }
  38. .audio-wrapper {
  39. display: flex;
  40. align-items: center;
  41. width: 90%;
  42. margin: 0 auto;
  43. }
  44. .audio-button-box {
  45. display: flex;
  46. align-items: center;
  47. margin: 40rpx auto 0;
  48. justify-content: space-around;
  49. height: 100rpx
  50. }
  51. .audio-number {
  52. font-size: 24upx;
  53. line-height: 1;
  54. color: #333;
  55. }
  56. .audio-slider {
  57. flex: 1;
  58. margin: 0 30rpx 0 35rpx;
  59. }
  60. .audio-control-wrapper {
  61. margin: 20rpx auto;
  62. display: flex;
  63. justify-content: center;
  64. align-items: center;
  65. position: relative;
  66. }
  67. .cover {
  68. width: 350rpx;
  69. height: 350rpx;
  70. box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
  71. border-radius: 5px;
  72. }
  73. .playbox{
  74. width: 100rpx;
  75. height: 100rpx;
  76. display:flex;
  77. align-items: center;
  78. justify-content: center;
  79. }
  80. .play,
  81. .pause {
  82. width: 100rpx;
  83. height: 100rpx;
  84. &.loading{
  85. width: 80rpx;
  86. height: 80rpx;
  87. animation: rotating 2s linear infinite;
  88. }
  89. }
  90. .prevbtn,
  91. .nextbtn {
  92. width: 40rpx;
  93. height: 40rpx;
  94. }
  95. .prevplay {
  96. width: 40rpx;
  97. height: 40rpx;
  98. transform: rotateZ(180deg);
  99. }
  100. .nextplay {
  101. width: 40rpx;
  102. height: 40rpx;
  103. }
  104. }
  105. .imt-audio.theme2 {
  106. background: #fff;
  107. border: 1px solid #cecece;
  108. width: 100%;
  109. margin: 0 auto;
  110. overflow: hidden;
  111. .top {
  112. background: #fff;
  113. display: flex;
  114. align-items: center;
  115. height: 150rpx;
  116. & > view:nth-child(2) {
  117. flex: 1;
  118. margin: 0 30rpx;
  119. .title {
  120. display: flex;
  121. align-items: center;
  122. justify-content: space-between;
  123. margin-top: 24rpx;
  124. text{
  125. font-size: 30rpx;
  126. text-align: left;
  127. max-width: 100%;
  128. @include textoverflow;
  129. flex: 1;
  130. }
  131. .audio-number {
  132. font-size: 24upx;
  133. line-height: 1;
  134. color: #333;
  135. }
  136. }
  137. .singer {
  138. color: #999;
  139. font-size: 26rpx;
  140. margin-top: 10rpx;
  141. text-align: left;
  142. margin-bottom: 18rpx;
  143. max-width: 100%;
  144. @include textoverflow;
  145. }
  146. }
  147. }
  148. .cover {
  149. width: 120rpx;
  150. height: 120rpx;
  151. box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  152. position: absolute;
  153. top: 50%;
  154. left: 50%;
  155. transform: translate(-50%, -50%);
  156. border-radius: 50%;
  157. border: 2px solid #fff;
  158. animation-fill-mode: forwards;
  159. -webkit-animation-fill-mode: forwards;
  160. }
  161. .cover.on {
  162. -webkit-animation: 10s rowup linear infinite normal;
  163. animation: 10s rowup linear infinite normal;
  164. animation-fill-mode: forwards;
  165. -webkit-animation-fill-mode: forwards;
  166. }
  167. .audio-control-wrapper{
  168. width: 150rpx;
  169. height: 150rpx;
  170. display: flex;
  171. align-items:center;
  172. justify-content: center;
  173. background: #efefef;
  174. background-size: contain;
  175. background-position: center;
  176. background-repeat: no-repeat;
  177. }
  178. .play {
  179. width: 80rpx;
  180. height: 80rpx;
  181. z-index: 99;
  182. background: rgba(0, 0, 0, 0.4);
  183. border-radius: 50%;
  184. &.loading{
  185. width: 60rpx;
  186. height: 60rpx;
  187. animation: rotating 2s linear infinite;
  188. }
  189. }
  190. .prevbtn {
  191. width: 48rpx;
  192. height: 48rpx;
  193. margin-right: 40rpx;
  194. }
  195. .nextbtn {
  196. width: 48rpx;
  197. height: 48rpx;
  198. margin-left: 40rpx;
  199. }
  200. }
  201. .imt-audio.theme3 {
  202. background: #ccc;
  203. width: 100%;
  204. overflow: hidden;
  205. display: flex;
  206. padding: 40rpx 20rpx;
  207. box-sizing: border-box;
  208. max-height: 200rpx;
  209. position:relative;
  210. .top {
  211. width: 140rpx;
  212. display: flex;
  213. align-items: center;
  214. justify-content: center;
  215. position: relative;
  216. }
  217. .audio-wrapper {
  218. display: flex;
  219. flex-direction: column;
  220. flex: 1;
  221. color: #fff;
  222. margin-left: 20rpx;
  223. .titlebox {
  224. display: flex;
  225. line-height: 46rpx;
  226. margin-bottom: 30rpx;
  227. .title {
  228. font-size: 30rpx;
  229. max-width: 50%;
  230. @include textoverflow;
  231. }
  232. .singer {
  233. margin-left: 20rpx;
  234. font-size: 28rpx;
  235. max-width: 50%;
  236. @include textoverflow;
  237. }
  238. }
  239. }
  240. .slidebox {
  241. display: flex;
  242. justify-content: space-between;
  243. width: 96%;
  244. view{
  245. &:first-child{
  246. font-size: 28rpx;
  247. }
  248. &:last-child{
  249. font-size: 28rpx;
  250. text{
  251. &:last-child{
  252. margin-left: 40rpx;
  253. }
  254. }
  255. }
  256. }
  257. }
  258. /deep/ .uni-slider-tap-area {
  259. padding: 0;
  260. }
  261. /deep/ .uni-slider-wrapper {
  262. min-height: 0;
  263. }
  264. /deep/ .uni-slider-handle-wrapper {
  265. height: 4px;
  266. }
  267. .audio-slider {
  268. position: absolute;
  269. top: 0;
  270. margin: 0;
  271. width: 100%;
  272. left: 0;
  273. padding: 0;
  274. }
  275. .cover {
  276. width: 120rpx;
  277. height: 120rpx;
  278. box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  279. position: absolute;
  280. top: 50%;
  281. left: 50%;
  282. transform: translate(-50%, -50%);
  283. animation-fill-mode: forwards;
  284. -webkit-animation-fill-mode: forwards;
  285. }
  286. .play {
  287. width: 80rpx;
  288. height: 80rpx;
  289. z-index: 99;
  290. background: rgba(0, 0, 0, 0.4);
  291. border-radius: 50%;
  292. position: absolute;
  293. top: 50%;
  294. left: 50%;
  295. transform: translate(-50%, -50%);
  296. &.loading{
  297. width: 60rpx;
  298. height: 60rpx;
  299. animation: rotating_theme3 2s linear infinite;
  300. }
  301. }
  302. }
  303. @keyframes rotating {
  304. 0% {
  305. transform: rotateZ(0deg)
  306. }
  307. 100% {
  308. transform: rotateZ(360deg)
  309. }
  310. }
  311. @keyframes rotating_theme3 {
  312. 0% {
  313. transform: translate(-50%, -50%) rotateZ(0deg)
  314. }
  315. 100% {
  316. transform: translate(-50%, -50%) rotateZ(360deg)
  317. }
  318. }
  319. .middles {
  320. position: relative;
  321. width: 420rpx;
  322. height: 1020rpx;
  323. .ms-close {
  324. position: absolute;
  325. bottom: 20rpx;
  326. left: 20rpx;
  327. width: 40rpx;
  328. height: 40rpx;
  329. image {
  330. width: 40rpx;
  331. height: 40rpx;
  332. }
  333. }
  334. .audio-flex {
  335. position: absolute;
  336. top: 50%;
  337. left: 65%;
  338. transform: translate(-50%, -50%);
  339. display: flex;
  340. align-items: center;
  341. .scroll-box {
  342. width: 80rpx;
  343. height: 800rpx;
  344. display: flex;
  345. justify-content: center;
  346. .slider-container {
  347. position: relative;
  348. width: 5rpx;
  349. height: 100%;
  350. background: #C0C0C0;
  351. border-radius: 10rpx;
  352. .place-box {
  353. width: 5rpx;
  354. background: #2671E2;
  355. }
  356. .slider-btn {
  357. position: absolute;
  358. left: -15rpx;
  359. width: 30rpx;
  360. height: 30rpx;
  361. border-radius: 50%;
  362. box-shadow: 0 0 10rpx #999;
  363. background: #fff;
  364. }
  365. }
  366. }
  367. }
  368. .forwards {
  369. position: absolute;
  370. top: 50%;
  371. left: 35%;
  372. padding: 20rpx;
  373. transform: translate(-50%, -50%) rotateZ(90deg);
  374. width: 800rpx;
  375. display: flex;
  376. flex-direction: column;
  377. justify-content: center;
  378. .audio-control-wrapper {
  379. display: flex;
  380. align-items: center;
  381. }
  382. .imt-audioss {
  383. position: relative;
  384. width: 100%;
  385. height: 100%;
  386. display: flex;
  387. align-items: center;
  388. justify-content: space-between;
  389. .forward-item {
  390. display: flex;
  391. align-items: center;
  392. image {
  393. width: 70rpx;
  394. height: 70rpx;
  395. }
  396. &.top {
  397. // margin: 0 60rpx;
  398. }
  399. }
  400. .audio-wrapper {
  401. padding: 0 0;
  402. }
  403. .audio-slider {
  404. width: 100%;
  405. }
  406. .node-class {
  407. width: 100%;
  408. color: #333;
  409. display: flex;
  410. justify-content: center;
  411. }
  412. }
  413. }
  414. }
  415. .playbackRate {
  416. margin: 0 10rpx;
  417. // padding: 0 10rpx;
  418. width: 55rpx;
  419. height: 55rpx;
  420. display: flex;
  421. align-items: center;
  422. justify-content: center;
  423. font-size: 24rpx;
  424. &.act {
  425. color: #2671E2;
  426. border: 5rpx solid #2671E2;
  427. border-radius: 50%;
  428. }
  429. }