返回头部滑动动画

来源:互联网 发布:ubuntu如何卸载程序 编辑:程序博客网 时间:2024/05/17 09:06

返回顶部滑动动画

jQuery.fn.scrollTo = function(speed){    var targetOffset = $(this).offset().top;    $('html,body').stop().animate({scrollTop: targetOffset},speed);    return this;}//use$("#box").click(function(){    $("body").scrollTo(500);    return false;})

关闭所有动画效果

$(document).ready(function(){    jQuery.fx.off = true})
0 0
原创粉丝点击