12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- .i-drawer {
- visibility: hidden;
- }
- .i-drawer-show {
- visibility: visible;
- }
- .i-drawer-show .i-drawer-mask {
- display: block;
- opacity: 1;
- }
- .i-drawer-show .i-drawer-container {
- opacity: 1;
- }
- .i-drawer-show.i-drawer-left .i-drawer-container,
- .i-drawer-show.i-drawer-right .i-drawer-container {
- transform: translate3d(0, -50%, 0);
- }
- .i-drawer-mask {
- opacity: 0;
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- z-index: 6;
- background: rgba(0, 0, 0, 0.6);
- transition: all 0.3s ease-in-out;
- }
- .i-drawer-container {
- position: fixed;
- left: 50%;
- height: 100%;
- top: 0;
- transform: translate3d(-50%, -50%, 0);
- transform-origin: center;
- transition: all 0.3s ease-in-out;
- z-index: 7;
- opacity: 0;
- overflow-y: scroll;
- background: #fff;
- -webkit-overflow-scrolling: touch;
- -ms-touch-action: pan-y cross-slide-y;
- -ms-scroll-chaining: none;
- -ms-scroll-limit: 0 50 0 50;
- }
- .i-drawer-left .i-drawer-container {
- left: 0;
- top: 50%;
- transform: translate3d(-100%, -50%, 0);
- }
- .i-drawer-right .i-drawer-container {
- right: 0;
- top: 50%;
- left: auto;
- transform: translate3d(100%, -50%, 0);
- }
|