weex卷轴控件的滚动事件与子控件的触摸事件冲突

时间:2017-05-25 04:21:18

标签: vue.js touch scroller weex

这是关于使用Vue进行Weex开发的问题。

scroller组件下,有许多嵌套的div子组件。在div中,添加了手势touchstarttouchendtouchcancel

事件处理按下和释放效果,但它们使滚动拖动事件无法正常工作。我该如何解决这个问题?

1 个答案:

答案 0 :(得分:0)

如果您只想添加触摸效果进行查看,可以使用伪类:

<style scoped>
  .logo {
    width: 360px;
    height: 82px;
    background-color: red;
  }
  .logo:active {
    width: 180px;
    height: 82px;
    background-color: green;
  }
</style>

参考:http://weex.apache.org/references/common-style.html#Pseudo-class-v0-9-5