Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/colewang/prevent-over-scroll
禁用IOS橡皮筋效果
https://github.com/colewang/prevent-over-scroll
Last synced: about 15 hours ago
JSON representation
禁用IOS橡皮筋效果
- Host: GitHub
- URL: https://github.com/colewang/prevent-over-scroll
- Owner: ColeWang
- License: mit
- Created: 2020-12-29T01:40:18.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-07-23T06:17:18.000Z (over 3 years ago)
- Last Synced: 2024-11-06T17:57:26.993Z (about 2 months ago)
- Language: TypeScript
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## 禁用IOS橡皮筋效果
```css
/* ios滚动元素添加 */
div {
-webkit-overflow-scrolling: touch;
}
``````typescript
// 启用
// 初始化自执行一次 将自动判断是否支持WebkitOverflowScrolling属性 无需另外判断ios客户端打开
enable()
// 停用
disable()
// 当前是否已启用
isEnabled()
```