VUE阻止移动端滑动默认行为

   日期:2020-11-15     浏览:93    评论:0    
核心提示:VUE阻止移动端滑动默认行为<template> <div :id="id" class="chart" :ref="id" @touchend="remove" @touchstart="start"></div></template><script>export default { props: { // 取消走势图默认事件 stopPrev: { type: Boolean, def

VUE阻止移动端滑动默认行为:左右及上下

<template>
  <div :id="id" class="chart" :ref="id" @touchend="remove" @touchstart="start"></div>
</template>
<script>
export default {
  props: {
    // 取消走势图默认事件
    stopPrev: {
      type: Boolean,
      default: false,
    },
  },
  //...
  methods: {
    start(e) {
      if (this.stopPrev) {
        e.preventDefault()
      }
    },
  },
}
</script>

VUE阻止移动端左右滑动默认行为

<template>
  <div :id="id" :class="{ chart: true, touch_y: stopPrev }" :ref="id" @touchend="remove"></div>
</template>
<script>
export default {
  props: {
    // 取消走势图横向滑动默认事件
    stopPrev: {
      type: Boolean,
      default: false,
    },
  },
}
</script>
<style scoped>
.chart {
  width: 100%;
  height: 100%;
}
.touch_y {
  touch-action: none;
  touch-action: pan-y;
}
</style>

阻止移动端H5开发浏览器默认左右滑动行为

 
打赏
 本文转载自:网络 
所有权利归属于原作者,如文章来源标示错误或侵犯了您的权利请联系微信13520258486
更多>最近资讯中心
更多>最新资讯中心
0相关评论

推荐图文
推荐资讯中心
点击排行
最新信息
新手指南
采购商服务
供应商服务
交易安全
关注我们
手机网站:
新浪微博:
微信关注:

13520258486

周一至周五 9:00-18:00
(其他时间联系在线客服)

24小时在线客服