1.0.0 • Published 8 years ago

one-page-windows v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
8 years ago

one-page-windows


A handy, loosely-coupled jQuery plugin for full-screen scrolling windows. Written originally by nick-jonas

Usage

Include the latest jQuery and dist/windows.min.js in your HTML page.

html

<section class="window"></section>
<section class="window"></section>
<section class="window"></section>
<section class="window"></section>
<section class="window"></section>

js

$(document).ready(function(){

    $('.window').windows({
        snapping: true,
        snapSpeed: 500,
        snapInterval: 1100,
        onScroll: function(scrollPos){
            // scrollPos:Number
        },
        onSnapComplete: function($el){
            // after window ($el) snaps into place
        },
        onWindowEnter: function($el){
            // when new window ($el) enters viewport
        }
    })

});

In the Wild