一款方便的全屏滚动jQuery插件
栏目分类:滚动代码 发布日期:2014-09-11 来源: 浏览次数:次
一款方便的全屏滚动jQuery插件,此款jQuery插件可以自动适应屏幕高度全屏滚动窗口,当页面快滚动到下一屏,自动滚动到显示多的一屏。
用法
包括在你的HTML页面的最新jQuery和资产/ JS/ jquery.windows.js。
html
用法
包括在你的HTML页面的最新jQuery和资产/ JS/ jquery.windows.js。
html
js
- <section class="window">section>
- <section class="window">section>
- <section class="window">section>
- <section class="window">section>
- <section class="window">section>
css
- $(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
- }
- })
- });
- .window{
- width:100%;
- height:100%;
- position:absolute;
- }
- @for $i from 1 through 6{
- .window:nth-child(#{$i}){
- background:nth($colors, $i);
- top:($i - 1) * 100%;
- }
- }