jquery实现返回顶部效果详解编程语言

jQuery(“#gotop”).css(‘display’,’none’);jQuery(window).scroll(function(){if(jQuery(this).scrollTop()>100){jQuery(“#gotop”).fadeIn(1000)}else{jQuery(“#gotop”).fadeOut(750)}});jQuery(“#gotop”).click(function(){jQuery(“html, body”).animate({scrollTop:0},300);return false})

滑动到一定距离,返回顶部按钮出现,点击后使用动画animate返回到顶部

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

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

相关推荐

发表回复

登录后才能评论