【发布时间】:2015-10-22 01:25:11
【问题描述】:
我想添加动画平滑,任何 adia?
Window.scrollTo(0, MyPanel.getAbsoluteTop());
【问题讨论】:
我想添加动画平滑,任何 adia?
Window.scrollTo(0, MyPanel.getAbsoluteTop());
【问题讨论】:
你也可以使用 jQuery animate 函数。
$('html').animate({ scrollTop: '0' });
【讨论】:
我使用velocity.js 和JSNI 调用:
public static native void setAnimatedScrollTop(MyView instance, String topElementId, String scrollPanelId, int offsetPosition) /*-{
$wnd.Velocity($wnd.document.getElementById(topElementId), 'scroll',
{duration: 1000, offset: offsetPosition, container: $wnd.document.getElementById(scrollPanelId),
complete: function(){
instance.@com.project.client.views.MyView::setScrollAnimationInProgress(Z)(false);
}
});
}-*/;
【讨论】: