Sha256: 1e37d1ce26ed7dd8290b3e870935d5a9995559258e273ed39f509a7fd73d29b9

Contents?: true

Size: 1.61 KB

Versions: 18

Compression:

Stored size: 1.61 KB

Contents

/*!
 * jQuery UI Effects Clip 1.11.4
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/clip-effect/
 */
(function( factory ) {
	if ( typeof define === "function" && define.amd ) {

		// AMD. Register as an anonymous module.
		define([
			"jquery",
			"./effect"
		], factory );
	} else {

		// Browser globals
		factory( jQuery );
	}
}(function( $ ) {

return $.effects.effect.clip = function( o, done ) {
	// Create element
	var el = $( this ),
		props = [ "position", "top", "bottom", "left", "right", "height", "width" ],
		mode = $.effects.setMode( el, o.mode || "hide" ),
		show = mode === "show",
		direction = o.direction || "vertical",
		vert = direction === "vertical",
		size = vert ? "height" : "width",
		position = vert ? "top" : "left",
		animation = {},
		wrapper, animate, distance;

	// Save & Show
	$.effects.save( el, props );
	el.show();

	// Create Wrapper
	wrapper = $.effects.createWrapper( el ).css({
		overflow: "hidden"
	});
	animate = ( el[0].tagName === "IMG" ) ? wrapper : el;
	distance = animate[ size ]();

	// Shift
	if ( show ) {
		animate.css( size, 0 );
		animate.css( position, distance / 2 );
	}

	// Create Animation Object:
	animation[ size ] = show ? distance : 0;
	animation[ position ] = show ? 0 : distance / 2;

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

};

}));

Version data entries

18 entries across 18 versions & 5 rubygems

Version Path
radius-rails-3.1.4 app/assets/components/jquery-ui/ui/effect-clip.js
catscope-0.1.6 assets/bower_components/jquery-ui/ui/effect-clip.js
catscope-0.1.5 assets/bower_components/jquery-ui/ui/effect-clip.js
jinda_lte-0.0.1 lib/generators/jinda_lte/templates/app/assets/jinda_assets/bower_components/jquery-ui/ui/effect-clip.js
catscope-0.1.4 assets/bower_components/jquery-ui/ui/effect-clip.js
catscope-0.1.3 assets/bower_components/jquery-ui/ui/effect-clip.js
catscope-0.1.2 assets/bower_components/jquery-ui/ui/effect-clip.js
catscope-0.1.1 assets/bower_components/jquery-ui/ui/effect-clip.js
rubyneat_dashboard-0.4.1 bower_components/jquery-ui/ui/effect-clip.js
date_picker-0.0.8 test/dummy/vendor/assets/components/jquery-ui/ui/effect-clip.js
date_picker-0.0.7 test/dummy/vendor/assets/components/jquery-ui/ui/effect-clip.js
date_picker-0.0.6 test/dummy/vendor/assets/components/jquery-ui/ui/effect-clip.js
date_picker-0.0.5 test/dummy/vendor/assets/components/jquery-ui/ui/effect-clip.js
date_picker-0.0.4 test/dummy/vendor/assets/components/jquery-ui/ui/effect-clip.js
date_picker-0.0.3 test/dummy/vendor/assets/components/jquery-ui/ui/effect-clip.js
date_picker-0.0.2 test/dummy/vendor/assets/components/jquery-ui/ui/effect-clip.js
date_picker-0.0.1 test/dummy/vendor/assets/components/jquery-ui/ui/effect-clip.js
catscope-0.1.0 assets/bower_components/jquery-ui/ui/effect-clip.js