html回到顶部的特效

html代码:


js代码:
$(function(){
 $(".istop").click(function() {
 $("html,body").animate({scrollTop:0}, 500);
 }); 
})

你可能感兴趣的:(html,js)