Notice
Recent Posts
Recent Comments
Link
«   2025/07   »
1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30 31
Archives
Today
Total
관리 메뉴

(❀╹◡╹)

[JS] safari에서 animate scrollTop 이 작동하지 않을 경우 본문

Programing/WEB

[JS] safari에서 animate scrollTop 이 작동하지 않을 경우

진 주 2020. 1. 16. 10:27

$('html, body').animate({ scrollTop: 2000 }, 2000); // for all browsers

// $('html').animate({scrollTop: 2000}, 2000); // works in Firefox and Chrome

// $('body').animate({scrollTop: 2000}, 2000); // works in Safari