kinetic drag for mobile & desktop - http://pep.briangonzalez.org
In your web page:
<script src="jquery.js"></script>
<script src="dist/jquery.pep.min.js"></script>
<script>
jQuery(function($) {
$('#pep').pep(); // yup, that simple.
});
</script>
Pep has many options. Here they are in their entirety, with their defaults.
var defaults = {
debug: false, // debug via a small div in the lower-righthand corner of the document
activeClass: 'active', // class to add to the DOM el while dragging
multiplier: 1, // +/- this number to modify to 1:1 ratio of finger/mouse movement to el movement
shouldPreventDefault: true, // in some cases, we don't want to prevent the default on our Pep object. your call.
stopEvents: '', // space delimited set of events which programmatically cause the object to stop
hardwareAccelerate: true, // apply the CSS3 silver bullet method to accelerate the pep object: http://indiegamr.com/ios6-html-hardware-acceleration-changes-and-how-to-fix-them/
useCSSTranslation: false, // EXPERIMENTAL: use CSS transform translations as opposed to top/left
disableSelect: true, // apply `user-select: none` (CSS) to the object
cssEaseString: "cubic-bezier(0.190, 1.000, 0.220, 1.000)", // get more css ease params from [ http://matthewlein.com/ceaser/ ]
cssEaseDuration: 750, // how long should it take (in ms) for the object to get from stop to rest?
shouldEase: true, // disable/enable easing
constrainToWindow: false, // constrain object to the window
constrainToParent: false, // constrain object to its parent
axis: null, // constrain object to either 'x' or 'y' axis
forceNonCSS3Movement: false, // DO NOT USE: this is subject to come/go. Use at your own ri
drag: function(){}, // called continuously while the object is dragging
start: function(){}, // called when dragging starts
stop: function(){}, // called when dragging stops
rest: function(){} // called after dragging stops, and object has come to rest
}
$('#pep').pep(defaults)
// Toggle functionality of all Pep objects on the page
$.pep.toggleAll()
// Explicitly disable all Pep objects on the page
$.pep.toggleAll(false)
// Explicitly enable all Pep objects on the page
$.pep.toggleAll(true)
Checkout the examples in the demos
folder, which cover a wide array of test cases and options. Or you can check out other examples at http://pep.briangonzalez.org/demo
Visit us at http://pep.briangonzalez.org or follow me on Twitter: @brianmgonzalez.
Pep has been tested in the latest:
- Firefox
- Chrome
- Safari
- Opera
- Internet Explorer
As well as:
- Internet Explorer 6 impossible!
- Internet Explorer 7 you're insane?
- Internet Explorer 8 I don't believe!
- Internet Explorer 9 are you sure?
- 12/02/12 - Complete rewrite with support for movement using CSS3 Transforms (
translate()
function) - 05/30/12 - Initial version