淺談自媒體短視訊配音、廣告配音等行業的發展前景
阿新 • • 發佈:2020-10-19
本文例項為大家分享了jQuery實現回到頂部效果的具體程式碼,供大家參考,具體內容如下
動畫:通過點選側欄導航,頁面到達相應的位置
jQuery方法:show(),hide(),animate()
動畫效果:
程式碼:
<!DOCTYPE html> <head> <meta charset="UTF-8"> <title>回到頂部</title> <script src="D:\jQuery/jquery-3.3.1.js"></script> <style> body,div,ul,li{ margin: 0; padding: 0; list-style: none; } #container{ margin: 10px; } #header{ width: 100%; height:200px; border: 2px solid #000; } #contant ul li{ width: 100%; height:600px; border: 2px solid #000; } #footer{ width: 100%; height:200px; border: 2px solid #000; } #scroll{ position: fixed; right: 50px; top: 300px; width: 80px; background: orange; opacity: 0.5 } #scroll ul{ list-style:none; } #scroll ul li{ width: 100%; height: 45px; line-height:45px; text-align: center; } </style> </head> <body> <div id="container"> <div id="header">頭部</div> <div id="contant"> <ul> <li>圖書</li> <li>服裝</li> <li>電子</li> <li>寵物</li> </ul> </div> <div id="footer">底部</div> <div id="scroll"> <ul> <li>圖書</li> <li>服裝</li> <li>電子</li> <li>寵物</li> <li>回到頂部</li> </ul> </div> </div> <script type="text/javascript"> $(document).ready(function () { //當滑鼠進入側邊導航欄時改變側欄樣式 $("#scroll").mouseenter(function(){ $(this).css( "opacity",1 ); }); $("#scroll").mouseleave(function(){ $(this).css("opacity",0.5); }) $("#scroll ul li").mouseover(function(){ $(this).css( { "color":"red","cursor":"pointer" }); }); $("#scroll ul li").mouseout(function(){ $(this).css("color","black"); }) //點選側欄導航,頁面到達相應位置 $("#scroll ul li").click(function () { switch($(this).index()){ case 4: // $(window).scrollTop(0); $(document.body).animate({"scrollTop":0},1000); $(document.documentElement).animate({"scrollTop":0},1000); break; case 0: $(document.body).animate({"scrollTop":200},1000); $(document.documentElement).animate({"scrollTop":200},1000); break; case 1: $(document.body).animate({"scrollTop":800},1000); $(document.documentElement).animate({"scrollTop":800},1000); break; case 2: $(document.body).animate({"scrollTop":1400},1000); $(document.documentElement).animate({"scrollTop":1400},1000); break; case 3: $(document.body).animate({"scrollTop":2000},1000); $(document.documentElement).animate({"scrollTop":2000},1000); break; default: break; } }); }); </script> </body> <html>
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支援我們。