🔔 Alert..!! Get 2 Month Free Cloud Hosting With $200 Bonus From Digital Ocean ACTIVATE DEAL

matchWindowScroll is a lightweight jQuery plugin that provides vertical page scrolling effects with mouse wheel, touch swipe and snapping support.

scrolling One-Page-Scrolling

Documentation

jquery-matchWindowScroll

マウスホイール操作でウィンドウの高さ毎に分けられたブロック毎に上下に自動でスクロールする

##Install

<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> <script src="//cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js"></script> <script src="//cdnjs.cloudflare.com/ajax/libs/jquery-mousewheel/3.1.11/jquery.mousewheel.min.js"></script> <script src="matchWindowScroll.js"></script>

##Example

var mw = matchWindowScroll(); $(window).on('matchScrollStart', function() {   $(elm).text('event : matchScrollStart, count : ' + mw.getCount() + ', element id : #' + mw.getElm().attr('id') ); }); $(window).on('matchScrollEnd', function() {   $(elm).text('event : matchScrollEnd, count : ' + mw.getCount() + ', element id : #' + mw.getElm().attr('id') ); });

You May Also Like