0

I would like to add animate smooth, any adia?

Window.scrollTo(0, MyPanel.getAbsoluteTop());
Juan Reina Pascual
  • 3,988
  • 7
  • 21
  • 34

2 Answers2

1

You can use jQuery animate function for the same.

$('html').animate({ scrollTop: '0' });
Baz
  • 36,440
  • 11
  • 68
  • 94
0

I was using velocity.js and JSNI call:

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);
            }
    });
}-*/;
alexp
  • 787
  • 5
  • 26