清除滚动条,禁止滑动,禁止滚动

282 阅读1分钟

1.清除滚动条

    ::-webkit-scrollbar {
      width: 0 !important;
    }
    ::-webkit-scrollbar {
      width: 0 !important;height: 0;
    }

2.禁止滑动

@touchmove.prevent
  1. 禁止滚动
@mousewheel.prevent