【问题标题】:jQuery animate scrollTop is not working in latest android version NougatjQuery animate scrollTop 在最新的 android 版本 Nougat 中不起作用
【发布时间】:2017-10-24 13:26:39
【问题描述】:

我有这段代码可以滚动到页面加载的位置。但这似乎不适用于 Android Nougat 版本。在 Android 6.0.1 中运行良好

$('body.catalog-category-view').animate({ scrollTop: '510px' }, 500);

有人可以帮忙吗?

【问题讨论】:

    标签: jquery jquery-animate scrolltop


    【解决方案1】:

    我用下面的代码解决了:

    $('body,html').animate({
          scrollTop: 510
    }, 800);
    

    通过放置如下条件将动画限制在正文中具有此类的特​​定页面(目录类别视图):

    var catalogList = $('.catalog-category-view');
    if(catalogList.length){
        $('body,html').animate({
           scrollTop: 510
        }, 800);
    }
    

    【讨论】:

      猜你喜欢
      • 2021-12-27
      • 1970-01-01
      • 2013-05-25
      • 2015-07-10
      • 2012-09-26
      • 2017-01-03
      • 1970-01-01
      • 1970-01-01
      • 2013-02-08
      相关资源
      最近更新 更多