su-notice-bar.wxss 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. /**
  2. * 这里是uni-app内置的常用样式变量
  3. *
  4. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  5. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  6. *
  7. */
  8. /**
  9. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  10. *
  11. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  12. */
  13. /* 颜色变量 */
  14. /* 行为相关颜色 */
  15. /* 文字基本颜色 */
  16. /* 背景颜色 */
  17. /* 边框颜色 */
  18. /* 尺寸变量 */
  19. /* 文字尺寸 */
  20. /* 图片尺寸 */
  21. /* Border Radius */
  22. /* 水平间距 */
  23. /* 垂直间距 */
  24. /* 透明度 */
  25. /* 文章场景相关 */
  26. .uni-noticebar.data-v-8eee8640 {
  27. display: flex;
  28. width: 100%;
  29. box-sizing: border-box;
  30. flex-direction: row;
  31. align-items: center;
  32. padding: 10px 12px;
  33. }
  34. .uni-noticebar-close.data-v-8eee8640 {
  35. margin-left: 8px;
  36. margin-right: 5px;
  37. }
  38. .uni-noticebar-icon.data-v-8eee8640 {
  39. margin-right: 5px;
  40. }
  41. .uni-noticebar__content-wrapper.data-v-8eee8640 {
  42. flex: 1;
  43. flex-direction: column;
  44. overflow: hidden;
  45. }
  46. .uni-noticebar__content-wrapper--single.data-v-8eee8640 {
  47. line-height: 18px;
  48. }
  49. .uni-noticebar__content-wrapper--single.data-v-8eee8640,
  50. .uni-noticebar__content-wrapper--scrollable.data-v-8eee8640 {
  51. flex-direction: row;
  52. }
  53. .uni-noticebar__content-wrapper--scrollable.data-v-8eee8640 {
  54. position: relative;
  55. height: 18px;
  56. }
  57. .uni-noticebar__content--scrollable.data-v-8eee8640 {
  58. flex: 1;
  59. display: block;
  60. overflow: hidden;
  61. }
  62. .uni-noticebar__content--single.data-v-8eee8640 {
  63. display: flex;
  64. flex: none;
  65. width: 100%;
  66. justify-content: center;
  67. }
  68. .uni-noticebar__content-text.data-v-8eee8640 {
  69. font-size: 14px;
  70. line-height: 18px;
  71. word-break: break-all;
  72. }
  73. .uni-noticebar__content-text--single.data-v-8eee8640 {
  74. display: block;
  75. width: 100%;
  76. white-space: nowrap;
  77. overflow: hidden;
  78. text-overflow: ellipsis;
  79. }
  80. .uni-noticebar__content-text--scrollable.data-v-8eee8640 {
  81. position: absolute;
  82. display: block;
  83. height: 18px;
  84. line-height: 18px;
  85. white-space: nowrap;
  86. padding-left: 100%;
  87. animation: notice-8eee8640 10s 0s linear infinite both;
  88. animation-play-state: paused;
  89. }
  90. .uni-noticebar__more.data-v-8eee8640 {
  91. display: inline-flex;
  92. flex-direction: row;
  93. flex-wrap: nowrap;
  94. align-items: center;
  95. padding-left: 5px;
  96. }
  97. .uni-noticebar__more-text.data-v-8eee8640 {
  98. font-size: 14px;
  99. }
  100. @keyframes notice-8eee8640 {
  101. 100% {
  102. transform: translate3d(-100%, 0, 0);
  103. }
  104. }