WeChat applet IOS prevents the page from sliding left and right

Directly set an overflow-x:hidden for the outermost view; //Crop the left/right edge of the content in the div element - hide it if it overflows the content area of ​​the element

	.myPage{
    
    
	background: #F5F4F0;
	height: 100vh;
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	overflow-x: hidden;
	}

Guess you like

Origin blog.csdn.net/weixin_40762926/article/details/126721198