MUI 实现hover 效果

// 监听点击li改变背景色
mui(".zone-area").on('touchstart', 'li', function() {
    this.style.background = 'lightgray'
});
mui(".zone-area").on('touchend', 'li', function() {
    this.style.background = 'white'
});

  通过 touchstart  touchend 实现 hover 效果。

posted @ 2017-07-06 10:47  RAINHAN  阅读(969)  评论(0编辑  收藏  举报