switch.wxss 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. .t-float-left {
  2. float: left;
  3. }
  4. .t-float-right {
  5. float: right;
  6. }
  7. @keyframes tdesign-fade-out {
  8. from {
  9. opacity: 1;
  10. }
  11. to {
  12. opacity: 0;
  13. }
  14. }
  15. .hotspot-expanded.relative {
  16. position: relative;
  17. }
  18. .hotspot-expanded::after {
  19. content: '';
  20. display: block;
  21. position: absolute;
  22. left: 0;
  23. top: 0;
  24. right: 0;
  25. bottom: 0;
  26. transform: scale(1.5);
  27. }
  28. .t-switch {
  29. display: flex;
  30. align-items: center;
  31. overflow: hidden;
  32. }
  33. .t-switch__label {
  34. position: absolute;
  35. top: 0;
  36. left: 0;
  37. bottom: 0;
  38. width: 100%;
  39. display: flex;
  40. align-items: center;
  41. justify-content: center;
  42. flex-wrap: nowrap;
  43. font-size: var(--td-swtich-label-font-size, 28rpx);
  44. color: var(--td-switch-label-color, var(--td-font-gray-4, rgba(0, 0, 0, 0.26)));
  45. overflow: hidden;
  46. }
  47. .t-switch__label--checked {
  48. color: var(--td-switch-label-checked-color, var(--td-switch-checked-color, var(--td-primary-color, #0052d9)));
  49. }
  50. .t-switch__label--large {
  51. font-size: var(--td-swtich-label-font-size, 32rpx);
  52. }
  53. .t-switch__label--small {
  54. font-size: var(--td-swtich-label-font-size, 24rpx);
  55. }
  56. .t-switch__label:empty {
  57. display: none;
  58. }
  59. .t-switch__icon {
  60. font-size: var(--td-switch-icon-size, 40rpx);
  61. }
  62. .t-switch__icon--large {
  63. font-size: var(--td-switch-icon-large-size, 48rpx);
  64. }
  65. .t-switch__icon--small {
  66. font-size: var(--td-switch-icon-small-size, 32rpx);
  67. }
  68. .t-switch__loading {
  69. color: var(--td-switch-label-checked-color, var(--td-switch-checked-color, var(--td-primary-color, #0052d9)));
  70. }
  71. .t-switch__body {
  72. vertical-align: middle;
  73. width: var(--td-switch-width, 90rpx);
  74. height: var(--td-switch-height, 56rpx);
  75. border-radius: var(--td-switch-radius, calc(var(--td-switch-height, 56rpx) / 2));
  76. background-color: var(--td-switch-unchecked-color, var(--td-font-gray-4, rgba(0, 0, 0, 0.26)));
  77. position: relative;
  78. transition: all 0.3s ease;
  79. overflow: hidden;
  80. }
  81. .t-switch__body--checked {
  82. background-color: var(--td-switch-checked-color, var(--td-primary-color, #0052d9));
  83. }
  84. .t-switch__body--disabled {
  85. background-color: var(--td-switch-unchecked-disabled-color, var(--td-gray-color-2, #eeeeee));
  86. }
  87. .t-switch__body--checked.t-switch__body--disabled {
  88. background-color: var(--td-switch-checked-disabled-color, var(--td-primary-color-3, #bbd3fb));
  89. }
  90. .t-switch__body--large {
  91. width: var(--td-switch-large-width, 104rpx);
  92. height: var(--td-switch-large-height, 64rpx);
  93. border-radius: var(--td-switch-large-radius, calc(var(--td-switch-large-height, 64rpx) / 2));
  94. }
  95. .t-switch__body--small {
  96. width: var(--td-switch-small-width, 78rpx);
  97. height: var(--td-switch-small-height, 48rpx);
  98. border-radius: var(--td-switch-small-radius, calc(var(--td-switch-small-height, 48rpx) / 2));
  99. }
  100. .t-switch__dot {
  101. position: absolute;
  102. left: var(--td-switch-dot-horizontal-margin, 6rpx);
  103. top: 50%;
  104. width: var(--td-switch-dot-size, 44rpx);
  105. height: var(--td-switch-dot-size, 44rpx);
  106. border-radius: 50%;
  107. background-color: var(--td-bg-color-block, #fff);
  108. transition: all 0.3s;
  109. transform: translateY(-50%);
  110. box-shadow: var(--td-switch-dot-shadow, var(--td-shadow-1, 0 1px 10px rgba(0, 0, 0, 0.05), 0 4px 5px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.12)));
  111. }
  112. .t-switch__dot:after {
  113. content: '';
  114. display: block;
  115. position: absolute;
  116. left: 0;
  117. top: 0;
  118. width: 200%;
  119. height: 200%;
  120. border: 1px solid var(--td-switch-dot-border-color, var(--td-gray-color-1, #f3f3f3));
  121. border-radius: 50%;
  122. transform: scale(0.5);
  123. transform-origin: 0 0;
  124. box-sizing: border-box;
  125. }
  126. .t-switch__dot--large {
  127. width: var(--td-switch-dot-large-size, 52rpx);
  128. height: var(--td-switch-dot-large-size, 52rpx);
  129. }
  130. .t-switch__dot--small {
  131. width: var(--td-switch-dot-small-size, 36rpx);
  132. height: var(--td-switch-dot-small-size, 36rpx);
  133. }
  134. .t-switch__dot--checked {
  135. left: calc(var(--td-switch-width, 90rpx) - var(--td-switch-dot-size, 44rpx) - var(--td-switch-dot-horizontal-margin, 6rpx));
  136. }
  137. .t-switch__dot--large.t-switch__dot--checked {
  138. left: calc(var(--td-switch-large-width, 104rpx) - var(--td-switch-dot-large-size, 52rpx) - var(--td-switch-dot-horizontal-margin, 6rpx));
  139. }
  140. .t-switch__dot--small.t-switch__dot--checked {
  141. left: calc(var(--td-switch-small-width, 78rpx) - var(--td-switch-dot-small-size, 36rpx) - var(--td-switch-dot-horizontal-margin, 6rpx));
  142. }
  143. .t-switch__dot--plain:not(.t-switch__dot--checked) {
  144. width: var(--td-switch-dot-plain-size, 36rpx);
  145. height: var(--td-switch-dot-plain-size, 36rpx);
  146. left: var(--td-switch-dot-plain-horizontal-margin, 10rpx);
  147. }
  148. .t-switch__dot--large.t-switch__dot--plain:not(.t-switch__dot--checked) {
  149. width: var(--td-switch-dot-plain-large-size, 44rpx);
  150. height: var(--td-switch-dot-plain-large-size, 44rpx);
  151. }
  152. .t-switch__dot--small.t-switch__dot--plain:not(.t-switch__dot--checked) {
  153. width: var(--td-switch-dot-plain-small-size, 28rpx);
  154. height: var(--td-switch-dot-plain-small-size, 28rpx);
  155. }