wall.js is a vanilla javascript library used to create a full-page smooth scrolling effect for a presentation webpage or a single-page scrolling web application.
With support for side navigation, fixed top navigation, and customization options.
fullpage js scroll inside section, fullpage js alternative, fullpage js horizontal scroll, full screen horizontal scrolling website
How to make use of it:
1. Create the top navigation like this:
<ul class="nav" data-wall-section-nav> <li class="nav-link">First</li> <li class="nav-link">Second</li> <li class="nav-link">Third</li> ... </ul>
2. Create as many split pages as you want.
<div id="wall"> <section class="section section-1"> Section 1 </section> <section class="section section-2"> Section 2 </section> <section class="section section-3"> Section 3 </section> </div>
3. You can also create custom navigation links to move between pages.
<div id="prev" class="btn btn-secondary">prev</div> <div id="next" class="btn btn-primary">next</div>
4. Create side navigation:
<ul class="dot" data-wall-section-nav> <li></li> <li></li> <li></li> ... </ul>
5. Download the JavaScript file and place wall.js at the bottom of the web page.
<script src="dist/wall.js"></script>
6. Configure the wall library.
var wall = new Wall('#wall');
7. Activate the next/previous navigation links.
document.getElementById('prev').addEventListener('click', function () { wall.prevSection(); }); document.getElementById('next').addEventListener('click', function () { wall.nextSection(); }); document.querySelector('.prev-slide').addEventListener('click', function () { wall.prevSlide(); }); document.querySelector('.next-slide').addEventListener('click', function () { wall.nextSlide(); });
8. Possible options to customize the wall library.
var wall = new Wall('#wall',{ wrapperZIndex: 1, sectionAnimateDuration: 1, easeFunction: 'easeIn', loopToBottom: false, loopToTop: false, sectionNavItemActiveClass: 'active', animatingClass: 'animating', currentClass: 'current' });
Fullpage Scrolling Framework, wall.js Plugin/Github
See Demo And Download
Official Website(nichenqin): Click Here
This superior jQuery/javascript plugin is developed by nichenqin. For extra advanced usage, please go to the official website.