首頁 > 微信小程序 > 微信小程序禁止页面上下滑动的css样式

微信小程序禁止页面上下滑动的css样式


  /* 禁止小程序上下滑动 */
  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;
}


相关资讯
最新资讯
AiDoYou AiDoYou-我愿意分享技术平台是一家分享开发中常遇到的技术问题解决方案,也是站长门记录分享文章的平台。 琼ICP备2022012332号