u-swiper.wxss 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. @charset "UTF-8";
  2. /**
  3. * 下方引入的为uView UI的集成样式文件,为scss预处理器,其中包含了一些"u-"开头的自定义变量
  4. * 使用的时候,请将下面的一行复制到您的uniapp项目根目录的uni.scss中即可
  5. * uView自定义的css类名和scss变量,均以"u-"开头,不会造成冲突,请放心使用
  6. */
  7. .u-swiper-wrap.data-v-a5b2d580 {
  8. position: relative;
  9. overflow: hidden;
  10. -webkit-transform: translateY(0);
  11. transform: translateY(0);
  12. }
  13. .u-swiper-image.data-v-a5b2d580 {
  14. width: 100%;
  15. will-change: transform;
  16. height: 100%;
  17. display: block;
  18. }
  19. .u-swiper-indicator.data-v-a5b2d580 {
  20. padding: 0 24rpx;
  21. position: absolute;
  22. display: flex;
  23. flex-direction: row;
  24. width: 100%;
  25. z-index: 1;
  26. }
  27. .u-indicator-item-rect.data-v-a5b2d580 {
  28. width: 26rpx;
  29. height: 8rpx;
  30. margin: 0 6rpx;
  31. transition: all 0.5s;
  32. background-color: rgba(0, 0, 0, 0.3);
  33. }
  34. .u-indicator-item-rect-active.data-v-a5b2d580 {
  35. background-color: rgba(255, 255, 255, 0.8);
  36. }
  37. .u-indicator-item-dot.data-v-a5b2d580 {
  38. width: 14rpx;
  39. height: 14rpx;
  40. margin: 0 6rpx;
  41. border-radius: 20rpx;
  42. transition: all 0.5s;
  43. background-color: rgba(0, 0, 0, 0.3);
  44. }
  45. .u-indicator-item-dot-active.data-v-a5b2d580 {
  46. background-color: rgba(255, 255, 255, 0.8);
  47. }
  48. .u-indicator-item-round.data-v-a5b2d580 {
  49. width: 14rpx;
  50. height: 14rpx;
  51. margin: 0 6rpx;
  52. border-radius: 20rpx;
  53. transition: all 0.5s;
  54. background-color: rgba(0, 0, 0, 0.3);
  55. }
  56. .u-indicator-item-round-active.data-v-a5b2d580 {
  57. width: 34rpx;
  58. background-color: rgba(255, 255, 255, 0.8);
  59. }
  60. .u-indicator-item-number.data-v-a5b2d580 {
  61. padding: 6rpx 16rpx;
  62. line-height: 1;
  63. background-color: rgba(0, 0, 0, 0.3);
  64. border-radius: 100rpx;
  65. font-size: 26rpx;
  66. color: rgba(255, 255, 255, 0.8);
  67. }
  68. .u-list-scale.data-v-a5b2d580 {
  69. -webkit-transform-origin: center center;
  70. transform-origin: center center;
  71. }
  72. .u-list-image-wrap.data-v-a5b2d580 {
  73. width: 100%;
  74. height: 100%;
  75. flex: 1;
  76. transition: all 0.5s;
  77. overflow: hidden;
  78. box-sizing: content-box;
  79. position: relative;
  80. }
  81. .u-swiper-title.data-v-a5b2d580 {
  82. position: absolute;
  83. background-color: rgba(0, 0, 0, 0.3);
  84. bottom: 0;
  85. left: 0;
  86. width: 100%;
  87. font-size: 28rpx;
  88. padding: 12rpx 24rpx;
  89. color: rgba(255, 255, 255, 0.9);
  90. }
  91. .u-swiper-item.data-v-a5b2d580 {
  92. display: flex;
  93. flex-direction: row;
  94. overflow: hidden;
  95. align-items: center;
  96. }