Tool-fullPage
[删除(380066935@qq.com或微信通知)]
https://github.com/alvarotrigo/fullPage.js
- Demo online | Codepen
- Wordpress plugin for Gutenberg and WordPress plugin for Elementor
- Wordpress theme
- fullpage.js Extensions
- Frequently Answered Questions
- [Migration from fullPage v3 to fullpage v4]
Usage
As you can see in the example files, you will need to include:
- The JavaScript file
fullpage.js
(or its minified versionfullpage.min.js
) - The css file
fullpage.css
Optionally, when using css3:false
, you can add the easings file in case you want to use other easing effects apart from the one included in the library (easeInOutCubic
).
Install using bower or npm
Optionally, you can install fullPage.js with bower or npm if you prefer:
Terminal:
// With bower
bower install fullpage.js
// With npm
npm install fullpage.js
Including files:
<link rel="stylesheet" type="text/css" href="fullpage.css" />
<!-- This following line is optional. Only necessary if you use the option css3:false and you want to use other easing effects rather than "easeInOutCubic". -->
<script src="vendors/easings.min.js"></script>
<script type="text/javascript" src="fullpage.js"></script>