2008-06-06 20:08:52 +00:00
|
|
|
/*
|
2008-09-04 22:03:30 +00:00
|
|
|
* jQuery UI Effects Transfer @VERSION
|
2008-06-06 20:08:52 +00:00
|
|
|
*
|
|
|
|
* Copyright (c) 2008 Aaron Eisenberger (aaronchi@gmail.com)
|
|
|
|
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
|
|
|
* and GPL (GPL-LICENSE.txt) licenses.
|
2008-09-19 14:20:14 +00:00
|
|
|
*
|
2008-06-06 20:08:52 +00:00
|
|
|
* http://docs.jquery.com/UI/Effects/Transfer
|
|
|
|
*
|
|
|
|
* Depends:
|
|
|
|
* effects.core.js
|
|
|
|
*/
|
|
|
|
(function($) {
|
2008-06-04 02:34:33 +00:00
|
|
|
|
2008-06-06 19:47:31 +00:00
|
|
|
$.effects.transfer = function(o) {
|
|
|
|
|
|
|
|
return this.queue(function() {
|
|
|
|
|
|
|
|
// Create element
|
|
|
|
var el = $(this);
|
2008-09-19 14:20:14 +00:00
|
|
|
|
2008-06-06 19:47:31 +00:00
|
|
|
// Set options
|
|
|
|
var mode = $.effects.setMode(el, o.options.mode || 'effect'); // Set Mode
|
|
|
|
var target = $(o.options.to); // Find Target
|
|
|
|
var position = el.offset();
|
|
|
|
var transfer = $('<div class="ui-effects-transfer"></div>').appendTo(document.body);
|
2008-06-08 15:39:12 +00:00
|
|
|
if(o.options.className) transfer.addClass(o.options.className);
|
2008-09-19 14:20:14 +00:00
|
|
|
|
2008-06-06 19:47:31 +00:00
|
|
|
// Set target css
|
|
|
|
transfer.addClass(o.options.className);
|
|
|
|
transfer.css({
|
|
|
|
top: position.top,
|
|
|
|
left: position.left,
|
2008-06-26 13:52:20 +00:00
|
|
|
height: el.outerHeight() - parseInt(transfer.css('borderTopWidth')) - parseInt(transfer.css('borderBottomWidth')),
|
|
|
|
width: el.outerWidth() - parseInt(transfer.css('borderLeftWidth')) - parseInt(transfer.css('borderRightWidth')),
|
2008-06-06 19:47:31 +00:00
|
|
|
position: 'absolute'
|
|
|
|
});
|
2008-09-19 14:20:14 +00:00
|
|
|
|
2008-06-06 19:47:31 +00:00
|
|
|
// Animation
|
|
|
|
position = target.offset();
|
|
|
|
animation = {
|
|
|
|
top: position.top,
|
2008-06-08 15:47:27 +00:00
|
|
|
left: position.left,
|
2008-06-06 19:47:31 +00:00
|
|
|
height: target.outerHeight() - parseInt(transfer.css('borderTopWidth')) - parseInt(transfer.css('borderBottomWidth')),
|
|
|
|
width: target.outerWidth() - parseInt(transfer.css('borderLeftWidth')) - parseInt(transfer.css('borderRightWidth'))
|
|
|
|
};
|
2008-09-19 14:20:14 +00:00
|
|
|
|
2008-06-06 19:47:31 +00:00
|
|
|
// Animate
|
|
|
|
transfer.animate(animation, o.duration, o.options.easing, function() {
|
|
|
|
transfer.remove(); // Remove div
|
|
|
|
if(o.callback) o.callback.apply(el[0], arguments); // Callback
|
|
|
|
el.dequeue();
|
2008-09-20 03:23:42 +00:00
|
|
|
});
|
2008-09-19 14:20:14 +00:00
|
|
|
|
2008-06-06 19:47:31 +00:00
|
|
|
});
|
2008-09-19 14:20:14 +00:00
|
|
|
|
2008-06-06 19:47:31 +00:00
|
|
|
};
|
2008-06-04 02:34:33 +00:00
|
|
|
|
|
|
|
})(jQuery);
|