u-line-progress.wxss 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. @charset "UTF-8";
  2. /* 页面左右间距 */
  3. /* 文字尺寸 */
  4. /*文字颜色*/
  5. /* 边框颜色 */
  6. /*颜色*/
  7. /* 图片加载中颜色 */
  8. /* 行为相关颜色 */
  9. /* 功能栏字体大小 */
  10. /*功能栏左侧小图标*/
  11. .u-progress.data-v-02285945 {
  12. overflow: hidden;
  13. height: 15px;
  14. display: -webkit-inline-box;
  15. display: -webkit-inline-flex;
  16. display: inline-flex;
  17. -webkit-box-align: center;
  18. -webkit-align-items: center;
  19. align-items: center;
  20. width: 100%;
  21. border-radius: 100rpx;
  22. }
  23. .u-active.data-v-02285945 {
  24. width: 0;
  25. height: 100%;
  26. -webkit-box-align: center;
  27. -webkit-align-items: center;
  28. align-items: center;
  29. display: -webkit-box;
  30. display: -webkit-flex;
  31. display: flex;
  32. -webkit-box-orient: horizontal;
  33. -webkit-box-direction: normal;
  34. -webkit-flex-direction: row;
  35. flex-direction: row;
  36. justify-items: flex-end;
  37. -webkit-justify-content: space-around;
  38. justify-content: space-around;
  39. font-size: 20rpx;
  40. color: #ffffff;
  41. -webkit-transition: all 0.4s ease;
  42. transition: all 0.4s ease;
  43. }
  44. .u-striped.data-v-02285945 {
  45. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  46. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  47. background-size: 39px 39px;
  48. }
  49. .u-striped-active.data-v-02285945 {
  50. -webkit-animation: progress-stripes-data-v-02285945 2s linear infinite;
  51. animation: progress-stripes-data-v-02285945 2s linear infinite;
  52. }
  53. @-webkit-keyframes progress-stripes-data-v-02285945 {
  54. 0% {
  55. background-position: 0 0;
  56. }
  57. 100% {
  58. background-position: 39px 0;
  59. }
  60. }
  61. @keyframes progress-stripes-data-v-02285945 {
  62. 0% {
  63. background-position: 0 0;
  64. }
  65. 100% {
  66. background-position: 39px 0;
  67. }
  68. }