自动向上滚动

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自动向上滚动相关的知识,希望对你有一定的参考价值。

Used to automatically scroll up the page so that it is focused on user entry (mobile devices)
  1. var clicked = false;
  2.  
  3. $(document).on('click', '#msisdn-input' , function(e){
  4. e.preventDefault();
  5. if(clicked===false){
  6. window.scrollTo(0,1);
  7. clicked = true;
  8. }
  9. setTimeout(function(){
  10. $('#scroll').css('float','left');
  11. scrollSize = $('.submit-button').offset().top + $('.submit-button').outerHeight()+5;
  12. console.log(scrollSize);
  13. screenSize = $(window).height();
  14. result = (scrollSize-screenSize);
  15. if(result>0){
  16. $('html, body').animate({scrollTop:result},'200');
  17. }
  18. },700);
  19. });

以上是关于自动向上滚动的主要内容,如果未能解决你的问题,请参考以下文章

向下拖动网页滚动条的时候,怎么老是自动向上滚动

谷歌地图片段在 N​​estedScrollView 内滚动

Android滚动问题

底部应用栏在使用片段导航时向上/向下滑动(导航架构组件)

Kivy Scrollview 自动滚动到新文本。防止向上滚动

没有滚动内容时如何下拉协调器布局