这是关于使用Vue进行Weex开发的问题。
在scroller
组件下,有许多嵌套的div
子组件。在div
中,添加了手势touchstart
,touchend
和touchcancel
。
事件处理按下和释放效果,但它们使滚动拖动事件无法正常工作。我该如何解决这个问题?
答案 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