123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- .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;
- overflow-y: scroll;
- overflow-x: scroll;
- background-color: #fff;
- }
- .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.1);
- transition: all 0.3s ease-in-out;
- }
- .i-drawer-container {
- position: fixed;
- left: 50%;
- top: 50%;
- transform: translate3d(-50%, -50%, 0);
- transform-origin: center;
- transition: all 0.3s ease-in-out;
- z-index: 7;
- opacity: 0;
- }
- .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);
- }
|