When writing small programs and h5 in uniapp, ios slides and freezes, and h5 slides and freezes

1. Generally add -webkit-overflow-scrolling: touch; that’s it

// 页面最外层盒子
	.getPicking {
		width: 100%;
		-webkit-overflow-scrolling: touch;
}

2. If it still doesn’t work, add more

       -webkit-overflow-scrolling: touch;
        overflow-scrolling: touch;
        overflow-y: scroll;

// 页面最外层盒子
	.getPicking {
		width: 100%;
		-webkit-overflow-scrolling: touch;
		overflow-scrolling: touch;
		overflow-y: scroll;
}

Guess you like

Origin blog.csdn.net/weixin_69666355/article/details/130574419