mirror of
https://github.com/cotes2020/jekyll-theme-chirpy.git
synced 2026-01-01 12:33:15 +00:00
Fix the compatibility of the smooth scrolling in Safari
Safari(at least on v14) does not support CSS property `scroll-behavior`
This commit is contained in:
@@ -12,7 +12,9 @@ $(function() {
|
||||
});
|
||||
|
||||
$("#back-to-top").click(() => {
|
||||
$("body,html").scrollTop(0);
|
||||
$("body,html").animate({
|
||||
scrollTop: 0
|
||||
}, 800);
|
||||
return false;
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user