這篇文章帶給大家的內容是關於html中自訂選單隨著滾動條滑動的程式碼實現 ,有一定的參考價值,有需要的朋友可以參考一下,希望對你有所幫助。
1、給一個div##
<style> #menu{ position: relative;top: 0px; } </style> <div id="menu"> </div>
2、事件選單,點選
<script> function showHide(num){ if(num==1){ $('html, body').animate({scrollTop: $('#biaoji1').offset().top},"slow")//"slow" }else if(num==2){ $('html, body').animate({scrollTop: $('#biaoji2').offset().top},"slow") }else if(num==3){ $('html, body').animate({scrollTop: $('#biaoji3').offset().top},"slow") } } </script>
3、捲動滑鼠
<script> $(function(){ window.onscroll=function(){ var top2=$(document).scrollTop(); //var top1=document.body.scrollTop; console.log("top2:"+top2) $("#menu").css("position","relative").css("top",top2); } }); </script>相關建議:
以上是html中自訂選單隨著捲軸滑動的程式碼實現的詳細內容。更多資訊請關注PHP中文網其他相關文章!