jQuery scrollTop not working in Chrome but working in Firefox

后端 未结 15 1766
再見小時候
再見小時候 2020-11-29 02:54

I have used a scrollTop function in jQuery for navigating to top, but strangely \'the smooth animated scroll\' stopped working in Safari and Chrome (scrolling w

15条回答
  •  南方客
    南方客 (楼主)
    2020-11-29 03:56

    I had a same problem with scrolling in chrome. So i removed this lines of codes from my style file.

    html{height:100%;}
    body{height:100%;}
    

    Now i can play with scroll and it works:

    var pos = 500;
    $("html,body").animate({ scrollTop: pos }, "slow");
    

提交回复
热议问题