index.css 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. @import '../common/index.css';
  2. .van-switch {
  3. position: relative;
  4. display: inline-block;
  5. box-sizing: initial;
  6. width: 2em;
  7. width: var(--switch-width, 2em);
  8. height: 1em;
  9. height: var(--switch-height, 1em);
  10. background-color: #fff;
  11. background-color: var(--switch-background-color, #fff);
  12. border: 1px solid rgba(0, 0, 0, 0.1);
  13. border: var(--switch-border, 1px solid rgba(0, 0, 0, 0.1));
  14. border-radius: 1em;
  15. border-radius: var(--switch-node-size, 1em);
  16. transition: background-color 0.3s;
  17. transition: background-color var(--switch-transition-duration, 0.3s);
  18. }
  19. .van-switch__node {
  20. position: absolute;
  21. top: 0;
  22. left: 0;
  23. border-radius: 100%;
  24. z-index: 1;
  25. z-index: var(--switch-node-z-index, 1);
  26. width: 1em;
  27. width: var(--switch-node-size, 1em);
  28. height: 1em;
  29. height: var(--switch-node-size, 1em);
  30. background-color: #fff;
  31. background-color: var(--switch-node-background-color, #fff);
  32. box-shadow: 0 3px 1px 0 rgba(0, 0, 0, 0.05), 0 2px 2px 0 rgba(0, 0, 0, 0.1), 0 3px 3px 0 rgba(0, 0, 0, 0.05);
  33. box-shadow: var(--switch-node-box-shadow, 0 3px 1px 0 rgba(0, 0, 0, 0.05), 0 2px 2px 0 rgba(0, 0, 0, 0.1), 0 3px 3px 0 rgba(0, 0, 0, 0.05));
  34. transition: -webkit-transform 0.3s cubic-bezier(0.3, 1.05, 0.4, 1.05);
  35. transition: transform 0.3s cubic-bezier(0.3, 1.05, 0.4, 1.05);
  36. transition: transform 0.3s cubic-bezier(0.3, 1.05, 0.4, 1.05), -webkit-transform 0.3s cubic-bezier(0.3, 1.05, 0.4, 1.05);
  37. transition: -webkit-transform var(--switch-transition-duration, 0.3s) cubic-bezier(0.3, 1.05, 0.4, 1.05);
  38. transition: transform var(--switch-transition-duration, 0.3s) cubic-bezier(0.3, 1.05, 0.4, 1.05);
  39. transition: transform var(--switch-transition-duration, 0.3s) cubic-bezier(0.3, 1.05, 0.4, 1.05),
  40. -webkit-transform var(--switch-transition-duration, 0.3s) cubic-bezier(0.3, 1.05, 0.4, 1.05);
  41. }
  42. .van-switch__loading {
  43. position: absolute !important;
  44. top: 25%;
  45. left: 25%;
  46. width: 50%;
  47. height: 50%;
  48. }
  49. .van-switch--on {
  50. background-color: #1989fa;
  51. background-color: var(--switch-on-background-color, #1989fa);
  52. }
  53. .van-switch--on .van-switch__node {
  54. -webkit-transform: translateX(1em);
  55. transform: translateX(1em);
  56. -webkit-transform: translateX(calc(var(--switch-width, 2em) - var(--switch-node-size, 1em)));
  57. transform: translateX(calc(var(--switch-width, 2em) - var(--switch-node-size, 1em)));
  58. }
  59. .van-switch--disabled {
  60. opacity: 0.4;
  61. opacity: var(--switch-disabled-opacity, 0.4);
  62. }