u-line-progress.wxss 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. @charset "UTF-8";
  2. /* 页面左右间距 */
  3. /* 文字尺寸 */
  4. /*文字颜色*/
  5. /* 边框颜色 */
  6. /*颜色*/
  7. /* 图片加载中颜色 */
  8. /* 行为相关颜色 */
  9. /* 功能栏字体大小 */
  10. /*功能栏左侧小图标*/
  11. .u-progress.data-v-0fa21744 {
  12. overflow: hidden;
  13. height: 15px;
  14. display: inline-flex;
  15. align-items: center;
  16. width: 100%;
  17. border-radius: 100rpx;
  18. }
  19. .u-active.data-v-0fa21744 {
  20. width: 0;
  21. height: 100%;
  22. align-items: center;
  23. display: flex;
  24. flex-direction: row;
  25. justify-items: flex-end;
  26. justify-content: space-around;
  27. font-size: 20rpx;
  28. color: #ffffff;
  29. transition: all 0.4s ease;
  30. }
  31. .u-striped.data-v-0fa21744 {
  32. 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);
  33. background-size: 39px 39px;
  34. }
  35. .u-striped-active.data-v-0fa21744 {
  36. -webkit-animation: progress-stripes-data-v-0fa21744 2s linear infinite;
  37. animation: progress-stripes-data-v-0fa21744 2s linear infinite;
  38. }
  39. @-webkit-keyframes progress-stripes-data-v-0fa21744 {
  40. 0% {
  41. background-position: 0 0;
  42. }
  43. 100% {
  44. background-position: 39px 0;
  45. }
  46. }
  47. @keyframes progress-stripes-data-v-0fa21744 {
  48. 0% {
  49. background-position: 0 0;
  50. }
  51. 100% {
  52. background-position: 39px 0;
  53. }
  54. }