| 12345678910111213141516171819202122232425262728293031 |
- .sliding-container {
- position: relative;
- width: 100%;
- height: 100%;
- min-height: 100vh;
- overflow: hidden;
- touch-action: pan-y pinch-zoom;
- background-color: inherit;
- }
- .page {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- min-height: 100vh;
- will-change: transform;
- background-color: inherit;
- overflow-y: auto;
- }
- .prev-page {
- z-index: 1;
- }
- .current-page {
- z-index: 2;
- }
- .next-page {
- z-index: 1;
- }
|