FullPageScroll 是一个纯 JS 轻量级插件,它使用纯 JS 为您的单页web应用程序实现了触摸式全屏单页滚动效果。
(下载的附件中附有DEMO)
更多单页滚动插件:👉 [ 详情 ]
<script src="/path/to/fullPage.min.js"></script>
<div id="main">
<section class="section"></section>
<section class="section"></section>
<section class="section"></section>
<section class="section"></section>
...
</div>
var page = new FullPage("#main");
var page = new FullPage("#main",{
// section selector
section: '.section',
// animation options
animationDuration: 700,
animationTiming: 'ease',
animationTranform: 'transform',
// enable side navigation
pagination: true,
// enable keyboard navigation
keyboard: true,
// enable touch events
touch: true,
// touch limit in ms
touchLimit: 100,
// infinite loop
loop: false,
// callbacks
onLeave: null,
afterLoad: null,
});
page.moveTo(index);
易助科技网效果演示地址: http://demo.easyzone.net.cn/plugin/FullPageScroll/index.html