u-line-progress.css 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. @charset "UTF-8";
  2. /**
  3. * 下方引入的为uView UI的集成样式文件,为scss预处理器,其中包含了一些"u-"开头的自定义变量
  4. * uView自定义的css类名和scss变量,均以"u-"开头,不会造成冲突,请放心使用
  5. */
  6. .u-progress.data-v-0fa21744 {
  7. overflow: hidden;
  8. height: 15px;
  9. display: -webkit-inline-box;
  10. display: -webkit-inline-flex;
  11. display: inline-flex;
  12. -webkit-box-align: center;
  13. -webkit-align-items: center;
  14. align-items: center;
  15. width: 100%;
  16. border-radius: 100rpx;
  17. }
  18. .u-active.data-v-0fa21744 {
  19. width: 0;
  20. height: 100%;
  21. -webkit-box-align: center;
  22. -webkit-align-items: center;
  23. align-items: center;
  24. display: -webkit-box;
  25. display: -webkit-flex;
  26. display: flex;
  27. -webkit-box-orient: horizontal;
  28. -webkit-box-direction: normal;
  29. -webkit-flex-direction: row;
  30. flex-direction: row;
  31. justify-items: flex-end;
  32. -webkit-justify-content: space-around;
  33. justify-content: space-around;
  34. font-size: 20rpx;
  35. color: #ffffff;
  36. -webkit-transition: all 0.4s ease;
  37. transition: all 0.4s ease;
  38. }
  39. .u-striped.data-v-0fa21744 {
  40. 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);
  41. 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);
  42. background-size: 39px 39px;
  43. }
  44. .u-striped-active.data-v-0fa21744 {
  45. -webkit-animation: progress-stripes-data-v-0fa21744 2s linear infinite;
  46. animation: progress-stripes-data-v-0fa21744 2s linear infinite;
  47. }
  48. @-webkit-keyframes progress-stripes-data-v-0fa21744 {
  49. 0% {
  50. background-position: 0 0;
  51. }
  52. 100% {
  53. background-position: 39px 0;
  54. }
  55. }
  56. @keyframes progress-stripes-data-v-0fa21744 {
  57. 0% {
  58. background-position: 0 0;
  59. }
  60. 100% {
  61. background-position: 39px 0;
  62. }
  63. }