DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> jQuery入門知識 >> JQuery特效代碼 >> jquery左邊浮動到一定位置時顯示返回頂部按鈕
jquery左邊浮動到一定位置時顯示返回頂部按鈕
編輯:JQuery特效代碼     
. 代碼如下:
<script>
$(function(){

$(window).bind('scroll',function(){

if ($(document).scrollTop() >200) {
$(".asd-return").show(1);
}else{
$(".asd-return").hide(1);
}
})
$(".asd-return").click(function(){
$('body,html').animate({scrollTop:0},1000);
})
})

</script>
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved