uniapp写小程序和h5,ios滑动卡顿,h5滑动卡顿

1. 一般加一个-webkit-overflow-scrolling: touch;就行了

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

2.再不行就加

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

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

猜你喜欢

转载自blog.csdn.net/weixin_69666355/article/details/130574419