An open API service indexing awesome lists of open source software.

https://github.com/bufferapp/jquery-dragme

A super lightweight jQuery plugin for dragging elements using CSS3 Transforms
https://github.com/bufferapp/jquery-dragme

Last synced: 5 months ago
JSON representation

A super lightweight jQuery plugin for dragging elements using CSS3 Transforms

Awesome Lists containing this project

README

          

jQuery DragMe
=============

A super lightweight jQuery plugin for dragging elements using CSS3 Transforms.
The goal of this plugin is not to be a drop in replacement for jQuery UI's
draggable, but a minimal plugin to make certain elements draggable on a page,
i.e. modal windows.

[Live demo](http://bufferapp.github.io/jquery-dragme/)

## Usage

```javascript
$('.my-modal-window').dragMe();
```

Prevent clicking on certain elements from dragging the element.

```javascript
$('.my-modal-window').dragMe({
cancel: 'textarea, .button'
});
```

## Roadmap

- Use requestAnimationFrame for smoother movement

## Contributions

Bug fixes or improvements welcome!