[Vuejs]-The scroll event of the weex scroller control conflicts with the touch event of the child control

0👍

If you just want to add touch effects to view, you can use pseudo class:

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

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

Leave a comment