js实现移动端向左滑动删除效果

使用插件alloy_finger.js

(vue方法使用)

1.引用js



2.html方法的使用

3.js方法的使用

Vue.use(AlloyFingerVue);
var vm=new Vue({
  el:'#container',
  methods:{
    swipe:function(e){
            console.log(e);
            var _content = md_lib.parents(e.target,'cart_item_content');
            if (e.direction == 'Left') {
                console.log('向左滑动了');
            }
            if (e.direction == 'Right') {
                console.log('向右滑动了');
            }
        }
  }
})

原生






Examples








  • 1
    删除
  • 2
    删除
  • 3
    删除
  • 4
    删除
  • 5
    删除
  • 我只是一个单纯的div
    删除
  • 7
    删除

你可能感兴趣的:(js实现移动端向左滑动删除效果)