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