我正在使用此代码滚动到我网站的水平中心。
function scrollCenter() {
scrollTo(($(document).width() - $(window).width()) / 2, 0);
}
我怎样才能获得动画滚动效果?
我正在使用此代码滚动到我网站的水平中心。
function scrollCenter() {
scrollTo(($(document).width() - $(window).width()) / 2, 0);
}
我怎样才能获得动画滚动效果?
要设置动画的属性是scrollLeft
。
$( 'html, body' ).animate({
scrollLeft: ($(document).width() - $(window).width()) / 2
}, 'slow' );
演示:http: //jsfiddle.net/2SGBS/