Full-page JS Scrolling Framework Library | wall.js

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.

Related Posts

svg-pan-zoom-container

Adding Zoom-on-Wheel and Pan-on-Drag to Inline SVG Elements

Vanilla-js module for adding zoom and panning behavior when dragging to SVG embedded elements. A lightweight Vanilla JavaScript plugin that enables zoom and pan functions on an…

html-table-sortable-js

Sorting HTML Table Vanilla JavaScript Library | Sortable.js

Sortable – Small JS vanilla table sorter makes any table with class = “sortable“, er, sortable. That is, the user can click the table header and change…

WYSIWYG-Rich-Text-Editor

WYSIWYG Rich Text Editor With jQuery And FontAwesome | RichText

RichText jQuery implementation for WYSIWYG Rich Text Editor which uses Font Awesome Iconic Font for editor icons. It is licensed under AGPL-3.0. Initialize editor Simply call .richText() on your jQuery(‘textarea’) or jQuery(‘input’)…

email-domain-autocomplete-genie

[Autocomplete] Email Domain Suggestions Like Gmail, Outlook, or More | email-genie

Email Genie allows auto-completion in the email field by providing a list of domain suggestions (gmail.com, outlook.com, etc.). This package is lightweight, flexible, compatible with libraries (jQuery,…

JavaScript-Library-for-Creating-Squircley-Magic

[Generator] JavaScript Library for Creating Squircley Magic ✨ | squircley.js

squircley.js is the core magic of Squirclular ✨ from https://squircley.app wrapped in a simple 0-dependency JavaScript library. squircley.js can generate SVG files, add square backgrounds to DOM…