码迷,mamicode.com
首页 > 其他好文 > 详细

Draggabilly – 轻松实现拖放功能(Drag & Drop)

时间:2014-05-29 16:17:40      阅读:284      评论:0      收藏:0      [点我收藏+]

标签:des   c   style   class   blog   code   

  Draggabilly 是一个很小的 JavaScript 库,专注于拖放功能。只需要简单的设置参数就可以在你的网站用添加拖放功能。兼容 IE8+ 浏览器,支持多点触摸。可以灵活绑定事件,支持 RequireJS 以及 Bower 安装。

您可能感兴趣的相关文章

 

bubuko.com,布布扣

 

事件绑定示例:

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!