/* 禁止小程序上下滑动 */
page {
overflow: hidden;
touch-action: none; //主要是这个
}
相关案例样式
.page-container {
position: relative;
overflow: hidden;
touch-action: none;
}
.index_tc {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background-color: rgba(0, 0, 0, 0.5);
/* 设置透明背景色 */
z-index: 999;
/* 确保弹出层位于最上层 */
overflow: hidden;
}