您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了“js如何實現返回頂部效果”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“js如何實現返回頂部效果”這篇文章吧。
代碼如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>JS點擊按鈕到頁面最底部/返回頁面頂部代碼</title> <style type="text/css"> #back-to-top{ position: fixed; bottom: 50px; right: 10%; } </style> </head> <body> <div ></div> <div id="back-to-top"> <a href="#top" rel="external nofollow" >返回頂部</a> </div> <script src="http://libs.baidu.com/jquery/2.0.0/jquery.js"></script> <script type="text/javascript"> $(document).ready(function(){ //首先將#back-to-top隱藏 $("#back-to-top").hide(); //當滾動條的位置處于距頂部100像素以下時,跳轉鏈接出現,否則消失 $(function () { $(window).scroll(function(){ if ($(window).scrollTop()>100){ $("#back-to-top").fadeIn(100); } else { $("#back-to-top").fadeOut(100); } }); //當點擊跳轉鏈接后,回到頁面頂部位置 $("#back-to-top").click(function(){ $('body,html').animate({scrollTop:0},"speed"); return false; }); }); }); </script> </body> </html>
以上是“js如何實現返回頂部效果”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。