swiper.wxss 678 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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-swiper {
  29. position: relative;
  30. overflow: hidden;
  31. height: 300rpx;
  32. }
  33. .t-swiper__container {
  34. position: relative;
  35. width: 100%;
  36. height: 100%;
  37. }
  38. .t-swiper__container.t-in-animation {
  39. transition-property: transform;
  40. }
  41. .t-swiper__container.t-is-hidden {
  42. visibility: hidden;
  43. transition-property: none;
  44. }