@furman1331/page-scroller
Version:
Amazing plugin for creating smooth scroll on your website
43 lines (37 loc) • 804 B
CSS
html.page-scroller-enabled, .page-scroller-enabled body {
margin: 0;
padding: 0;
-webkit-tap-highlight-color: rgba(0,0,0,0);
}
.page-scoller-body {
height: 100%;
position: relative;
}
.page-scroller-wrapper {
height: 100%;
width: 100%;
position: relative;
}
.page-scroller-section {
height: 100%;
display: block;
position: relative;
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
}
.page-scroller-section-with-slides {
z-index: 1;
width: 100%;
height: 100%;
overflow: hidden;
position: relative;
-webkit-transition: all .3s ease-out;
transition: all .3s ease-out;
}
.page-scroller-slide-wrapper {
height: 100%;
display: flex;
float: left;
position: relative;
}