index.css 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. .i-drawer {
  2. visibility: hidden;
  3. }
  4. .i-drawer-show {
  5. visibility: visible;
  6. }
  7. .i-drawer-show .i-drawer-mask {
  8. display: block;
  9. opacity: 1;
  10. }
  11. .i-drawer-show .i-drawer-container {
  12. opacity: 1;
  13. overflow-y: scroll;
  14. overflow-x: scroll;
  15. background-color: #fff;
  16. }
  17. .i-drawer-show.i-drawer-left .i-drawer-container,
  18. .i-drawer-show.i-drawer-right .i-drawer-container {
  19. transform: translate3d(0, -50%, 0);
  20. }
  21. .i-drawer-mask {
  22. opacity: 0;
  23. position: fixed;
  24. top: 0;
  25. left: 0;
  26. right: 0;
  27. bottom: 0;
  28. z-index: 6;
  29. background: rgba(0, 0, 0, 0.1);
  30. transition: all 0.3s ease-in-out;
  31. }
  32. .i-drawer-container {
  33. position: fixed;
  34. left: 50%;
  35. top: 50%;
  36. transform: translate3d(-50%, -50%, 0);
  37. transform-origin: center;
  38. transition: all 0.3s ease-in-out;
  39. z-index: 7;
  40. opacity: 0;
  41. }
  42. .i-drawer-left .i-drawer-container {
  43. left: 0;
  44. top: 50%;
  45. transform: translate3d(-100%, -50%, 0);
  46. }
  47. .i-drawer-right .i-drawer-container {
  48. right: 0;
  49. top: 50%;
  50. left: auto;
  51. transform: translate3d(100%, -50%, 0);
  52. }