Sha256: f55391d14d5e86b99972693901322317a815f0a36b6c5eb245cd69058432c0c9

Contents?: true

Size: 1.44 KB

Versions: 31

Compression:

Stored size: 1.44 KB

Contents

/*!
 * jQuery UI Effects Slide 1.9.2
 * http://jqueryui.com
 *
 * Copyright 2012 jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/slide-effect/
 *
 * Depends:
 *	jquery.ui.effect.js
 */
(function( $, undefined ) {

$.effects.effect.slide = function( o, done ) {

	// Create element
	var el = $( this ),
		props = [ "position", "top", "bottom", "left", "right", "width", "height" ],
		mode = $.effects.setMode( el, o.mode || "show" ),
		show = mode === "show",
		direction = o.direction || "left",
		ref = (direction === "up" || direction === "down") ? "top" : "left",
		positiveMotion = (direction === "up" || direction === "left"),
		distance,
		animation = {};

	// Adjust
	$.effects.save( el, props );
	el.show();
	distance = o.distance || el[ ref === "top" ? "outerHeight" : "outerWidth" ]( true );

	$.effects.createWrapper( el ).css({
		overflow: "hidden"
	});

	if ( show ) {
		el.css( ref, positiveMotion ? (isNaN(distance) ? "-" + distance : -distance) : distance );
	}

	// Animation
	animation[ ref ] = ( show ?
		( positiveMotion ? "+=" : "-=") :
		( positiveMotion ? "-=" : "+=")) +
		distance;

	// Animate
	el.animate( animation, {
		queue: false,
		duration: o.duration,
		easing: o.easing,
		complete: function() {
			if ( mode === "hide" ) {
				el.hide();
			}
			$.effects.restore( el, props );
			$.effects.removeWrapper( el );
			done();
		}
	});
};

})(jQuery);

Version data entries

31 entries across 31 versions & 2 rubygems

Version Path
RubyApp-0.7.16 lib/ruby_app/resources/elements/mobile/document/jquery-ui-1.9.2.custom/development-bundle/ui/jquery.ui.effect-slide.js
RubyApp-0.7.15 lib/ruby_app/resources/elements/mobile/document/jquery-ui-1.9.2.custom/development-bundle/ui/jquery.ui.effect-slide.js
RubyApp-0.7.14 lib/ruby_app/resources/elements/mobile/document/jquery-ui-1.9.2.custom/development-bundle/ui/jquery.ui.effect-slide.js
RubyApp-0.7.13 lib/ruby_app/resources/elements/mobile/document/jquery-ui-1.9.2.custom/development-bundle/ui/jquery.ui.effect-slide.js
RubyApp-0.7.12 lib/ruby_app/resources/elements/mobile/document/jquery-ui-1.9.2.custom/development-bundle/ui/jquery.ui.effect-slide.js
RubyApp-0.7.11 lib/ruby_app/resources/elements/mobile/document/jquery-ui-1.9.2.custom/development-bundle/ui/jquery.ui.effect-slide.js
RubyApp-0.7.10 lib/ruby_app/resources/elements/mobile/document/jquery-ui-1.9.2.custom/development-bundle/ui/jquery.ui.effect-slide.js
RubyApp-0.7.9 lib/ruby_app/resources/elements/mobile/document/jquery-ui-1.9.2.custom/development-bundle/ui/jquery.ui.effect-slide.js
RubyApp-0.7.5 lib/ruby_app/resources/elements/mobile/document/jquery-ui-1.9.2.custom/development-bundle/ui/jquery.ui.effect-slide.js
RubyApp-0.7.4 lib/ruby_app/resources/elements/mobile/document/jquery-ui-1.9.2.custom/development-bundle/ui/jquery.ui.effect-slide.js
RubyApp-0.7.3 lib/ruby_app/resources/elements/mobile/document/jquery-ui-1.9.2.custom/development-bundle/ui/jquery.ui.effect-slide.js
RubyApp-0.7.2 lib/ruby_app/resources/elements/mobile/document/jquery-ui-1.9.2.custom/development-bundle/ui/jquery.ui.effect-slide.js
RubyApp-0.7.1 lib/ruby_app/resources/elements/mobile/document/jquery-ui-1.9.2.custom/development-bundle/ui/jquery.ui.effect-slide.js
RubyApp-0.7.0 lib/ruby_app/resources/elements/mobile/document/jquery-ui-1.9.2.custom/development-bundle/ui/jquery.ui.effect-slide.js
RubyApp-0.6.71 lib/ruby_app/resources/elements/mobile/document/jquery-ui-1.9.2.custom/development-bundle/ui/jquery.ui.effect-slide.js
RubyApp-0.6.70 lib/ruby_app/resources/elements/mobile/document/jquery-ui-1.9.2.custom/development-bundle/ui/jquery.ui.effect-slide.js
RubyApp-0.6.69 lib/ruby_app/resources/elements/mobile/document/jquery-ui-1.9.2.custom/development-bundle/ui/jquery.ui.effect-slide.js
RubyApp-0.6.68 lib/ruby_app/resources/elements/mobile/document/jquery-ui-1.9.2.custom/development-bundle/ui/jquery.ui.effect-slide.js
RubyApp-0.6.67 lib/ruby_app/resources/elements/mobile/document/jquery-ui-1.9.2.custom/development-bundle/ui/jquery.ui.effect-slide.js
RubyApp-0.6.66 lib/ruby_app/resources/elements/mobile/document/jquery-ui-1.9.2.custom/development-bundle/ui/jquery.ui.effect-slide.js