以下透過一段JQuery程式碼實現滑鼠滾輪滑動到頁面節點的詳細介紹,並透過展示效果圖展示給大家。
基於jQuery滑鼠滾輪滑動到頁面節點部分。這是一款基於jQuery CSS3實現的使用滑鼠滾輪或手勢滑動到頁面節點部分特效。效果圖如下:
實作的程式碼。
html代碼:
<section class="panel home" data-section-name="home"> <div class="inner"> <header> <h1></h1> <p class="tagline">适用浏览器:360、FireFox、Chrome、Safari、Opera、傲游、搜狗、世界之窗.<br><br>不支持IE8及以下浏览器。<br><br><br></p> </header> <div style="text-algin:center;margin:10px auto"> <script src="/js/ad_js/bd_76090.js" type="text/javascript"></script></div><br /> <a href="#overview" class="scroll">滑动鼠标滚轮</a> </div> </section> <section class="panel overview" data-section-name="overview"> <div class="inner"> <h2>基本使用</h2> <p>需要引入 jQuery 1.6+ 以及缓冲动画插件jquery.easing.js.</p> <pre class="brush:php;toolbar:false"> <! doctype html> <html> <head> <script> $(function() { $.scrollify({ section : "section", }); }); </script> </head> <body> <section></section> <section></section> </body> </html>
$.scrollify({ section : "section", sectionName : "section-name", easing: "easeOutExpo", scrollSpeed: 1100, offset : 0, scrollbars: true, before:function() {}, after:function() {} });
滑动到指定的节点。
$.scrollify("move","#name");
js程式碼:
$(function () { $(".panel").css({ "height": $(window).height() }); var timer; $(window).resize(function () { clearTimeout(timer); timer = setTimeout(function () { $(".panel").css({ "height": $(window).height() }); }, 40); }); $.scrollify({ section: ".panel" }); $(".scroll").click(function (e) { e.preventDefault(); $.scrollify("move", $(this).attr("href")); }); });
以上程式碼就是應用JQuery實作滑鼠滾輪滑動到頁面節點的全部內容,希望對大家在今後的專案過程中有所幫助。