mirror of
https://github.com/taigrr/wails.git
synced 2026-04-02 05:08:54 -07:00
10 lines
299 B
Plaintext
10 lines
299 B
Plaintext
# 滚动超出
|
|
|
|
[Overscroll](https://developer.mozilla.org/zh-CN/docs/Web/CSS/overscroll-behavior) 是当您滚动超出页面内容边界时有时会获得的“弹跳效果”。这在移动应用程序中很常见。这可以使用 CSS 禁用:
|
|
|
|
```css
|
|
body {
|
|
overscroll-behavior: none;
|
|
}
|
|
```
|