jquery向上滚动页面的写法详解编程语言

jquery向上滚动页面的写法


$('.arrow_top').on('click',function () {
$body = (window.opera) ? (document.compatMode == "CSS1Compat" ? $('html') : $('body')) : $('html,body');
$body.animate({scrollTop: 0}, 1000);

})
$(window).scroll(function() {
if(parseInt($(document).scrollTop())>=300){
$('.arrow_top').fadeIn();
}else{
$('.arrow_top').fadeOut();
}
});

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/18833.html

(0)
上一篇 2021年7月19日
下一篇 2021年7月19日

相关推荐

发表回复

登录后才能评论