标签:des c style class blog code
Draggabilly 是一个很小的 JavaScript 库,专注于拖放功能。只需要简单的设置参数就可以在你的网站用添加拖放功能。兼容 IE8+ 浏览器,支持多点触摸。可以灵活绑定事件,支持 RequireJS 以及 Bower 安装。
事件绑定示例:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15 |
var
draggie = new
Draggabilly( elem ); function
onDragMove( instance, event, pointer ) { console.log( ‘dragMove on ‘
+ event.type + pointer.pageX + ‘, ‘
+ pointer.pageY + ‘ position at ‘
+ instance.position.x + ‘, ‘
+ instance.position.y ); } // bind event listener draggie.on( ‘dragMove‘ , onDragMove ); // un-bind event listener draggie.off( ‘dragMove‘ , onDragMove ); // return true to trigger an event listener just once draggie.once( ‘dragMove‘ , function () { console.log( ‘Draggabilly did move, just once‘ ); }); |
本文链接:Draggabilly
– 轻松实现拖放功能(Drag & Drop)
编译来源:梦想天空 ◆ 关注前端开发技术 ◆ 分享网页设计资源
本文来自【梦想天空(http://www.cnblogs.com/lhb25/)】
Draggabilly – 轻松实现拖放功能(Drag & Drop),布布扣,bubuko.com
Draggabilly – 轻松实现拖放功能(Drag & Drop)
标签:des c style class blog code
原文地址:http://www.cnblogs.com/lhb25/p/draggabilly-makes-drag-and-drop-easy.html