index.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. .audio_msg_container {
  2. width: 125px;
  3. height: 36px;
  4. display: flex;
  5. justify-content: space-between;
  6. padding: 0 8px;
  7. align-items: center;
  8. }
  9. .audio_msg_container_mine {
  10. color: #f9fafa;
  11. background: #009eff;
  12. border-radius: 16px 12px 4px 16px;
  13. }
  14. .audio_msg_container_other {
  15. flex-direction: row-reverse;
  16. color: #171a1c;
  17. background: #e5f5ff;
  18. border-radius: 12px 16px 16px 4px;
  19. }
  20. .audio_msg_play_icon {
  21. width: 16px;
  22. height: 15px;
  23. }
  24. /* mine */
  25. .audio_msg_play_icon_mine {
  26. background: url('~@/static/images/new_ui/message/audio/mine_playing_icon.png')
  27. no-repeat;
  28. background-size: 100% 100%;
  29. }
  30. @keyframes mine_play_icon {
  31. 0% {
  32. background: url('~@/static/images/new_ui/message/audio/mine_playing2_icon.png')
  33. no-repeat;
  34. background-size: 100% 100%;
  35. }
  36. 50% {
  37. background: url('~@/static/images/new_ui/message/audio/mine_playing_icon.png')
  38. no-repeat;
  39. background-size: 100% 100%;
  40. }
  41. 100% {
  42. background: url('~@/static/images/new_ui/message/audio/mine_playing2_icon.png')
  43. no-repeat;
  44. background-size: 100% 100%;
  45. }
  46. }
  47. .start_mine_play_audio {
  48. animation: mine_play_icon 2s;
  49. animation-iteration-count: infinite;
  50. }
  51. /* other */
  52. .audio_msg_play_icon_other {
  53. background: url('~@/static/images/new_ui/message/audio/other_playing_icon.png')
  54. no-repeat;
  55. background-size: 100% 100%;
  56. }
  57. @keyframes other_play_icon {
  58. 0% {
  59. background: url('~@/static/images/new_ui/message/audio/other_playing2_icon.png')
  60. no-repeat;
  61. background-size: 100% 100%;
  62. }
  63. 50% {
  64. background: url('~@/static/images/new_ui/message/audio/other_playing_icon.png')
  65. no-repeat;
  66. background-size: 100% 100%;
  67. }
  68. 100% {
  69. background: url('~@/static/images/new_ui/message/audio/other_playing2_icon.png')
  70. no-repeat;
  71. background-size: 100% 100%;
  72. }
  73. }
  74. .start_other_play_audio {
  75. animation: other_play_icon 2s;
  76. animation-iteration-count: infinite;
  77. }