2021年4月10日 星期六

Views

Jquery 函式庫用法

 1. animate() 動畫效果之意


一堆假文字 
  <div id="a"/></div>//隱藏錨點  
//搭配jquery
$('#mybtn').click(function(){   //當按鈕按下

    $("html,body").animate({   //html的body 動畫效果 就會搭配網頁卷軸效果 $.attr(this, 'position') 抓到該顆按鈕的position屬性
    scrollTop:$($.attr(this, 'position')).offset().top},1000); //scrollTop 控制網頁卷軸 1000 是動畫移動速度毫秒
    });//然後網頁卷軸以1000毫秒偏移到設定錨點的a位置上方 

沒有留言:

張貼留言