昨天我在heroku上部署了一个新的NodeJS + React。该项目在笔记本电脑和安卓系统上也能运行,但在iPhone (IOS)上,用户登录后屏幕会冻结。不能滚动,不能看到图像,不能点击按钮。你知道我该怎么做吗?
主CSS:
* {
margin: 0;
padding: 0;
outline: none;
box-sizing: border-box;
text-decoration: none;
list-style: none;
border: none;
}
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
"Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
background-color: var(--color-light);
color: var(--color-dark);
overflow-x: hidden;
}
在主CSS中添加以下内容
overflow: scroll;
-webkit-overflow-scrolling: touch;