FE/CSS
[ CSS ] Disable pull-to-refresh in iOS
HEON.D
2024. 1. 19. 12:56
<style>
html {
overflow: hidden;
overscroll-behavior: none;
}
</style>
https://www.the-koi.com/projects/how-to-disable-pull-to-refresh/
https://stackoverflow.com/questions/69261011/disable-pull-to-refresh-in-ios-15-safari
Disable pull-to-refresh in iOS 15 Safari
iOS 15 is out and so is the new release of Safari that brings the ubiquitous pull-to-refresh. Like it or not, single-page apps don't like that too much. Here's how to disable it on Chrome for iPhone:
stackoverflow.com