File Editor
Directories:
.. (Back)
Files:
accordion.js
accordion.min.js
autocomplete.js
autocomplete.min.js
button.js
button.min.js
checkboxradio.js
checkboxradio.min.js
controlgroup.js
controlgroup.min.js
core.js
core.min.js
datepicker.js
datepicker.min.js
dialog.js
dialog.min.js
draggable.js
draggable.min.js
droppable.js
droppable.min.js
effect-blind.js
effect-blind.min.js
effect-bounce.js
effect-bounce.min.js
effect-clip.js
effect-clip.min.js
effect-drop.js
effect-drop.min.js
effect-explode.js
effect-explode.min.js
effect-fade.js
effect-fade.min.js
effect-fold.js
effect-fold.min.js
effect-highlight.js
effect-highlight.min.js
effect-puff.js
effect-puff.min.js
effect-pulsate.js
effect-pulsate.min.js
effect-scale.js
effect-scale.min.js
effect-shake.js
effect-shake.min.js
effect-size.js
effect-size.min.js
effect-slide.js
effect-slide.min.js
effect-transfer.js
effect-transfer.min.js
effect.js
effect.min.js
menu.js
menu.min.js
mouse.js
mouse.min.js
progressbar.js
progressbar.min.js
resizable.js
resizable.min.js
selectable.js
selectable.min.js
selectmenu.js
selectmenu.min.js
slider.js
slider.min.js
sortable.js
sortable.min.js
spinner.js
spinner.min.js
tabs.js
tabs.min.js
tooltip.js
tooltip.min.js
Create New File
Create
Edit File: effect-fold.js
/*! * jQuery UI Effects Fold 1.13.3 * https://jqueryui.com * * Copyright OpenJS Foundation and other contributors * Released under the MIT license. * https://jquery.org/license */ //>>label: Fold Effect //>>group: Effects //>>description: Folds an element first horizontally and then vertically. //>>docs: https://api.jqueryui.com/fold-effect/ //>>demos: https://jqueryui.com/effect/ ( function( factory ) { "use strict"; if ( typeof define === "function" && define.amd ) { // AMD. Register as an anonymous module. define( [ "jquery", "../version", "../effect" ], factory ); } else { // Browser globals factory( jQuery ); } } )( function( $ ) { "use strict"; return $.effects.define( "fold", "hide", function( options, done ) { // Create element var element = $( this ), mode = options.mode, show = mode === "show", hide = mode === "hide", size = options.size || 15, percent = /([0-9]+)%/.exec( size ), horizFirst = !!options.horizFirst, ref = horizFirst ? [ "right", "bottom" ] : [ "bottom", "right" ], duration = options.duration / 2, placeholder = $.effects.createPlaceholder( element ), start = element.cssClip(), animation1 = { clip: $.extend( {}, start ) }, animation2 = { clip: $.extend( {}, start ) }, distance = [ start[ ref[ 0 ] ], start[ ref[ 1 ] ] ], queuelen = element.queue().length; if ( percent ) { size = parseInt( percent[ 1 ], 10 ) / 100 * distance[ hide ? 0 : 1 ]; } animation1.clip[ ref[ 0 ] ] = size; animation2.clip[ ref[ 0 ] ] = size; animation2.clip[ ref[ 1 ] ] = 0; if ( show ) { element.cssClip( animation2.clip ); if ( placeholder ) { placeholder.css( $.effects.clipToBox( animation2 ) ); } animation2.clip = start; } // Animate element .queue( function( next ) { if ( placeholder ) { placeholder .animate( $.effects.clipToBox( animation1 ), duration, options.easing ) .animate( $.effects.clipToBox( animation2 ), duration, options.easing ); } next(); } ) .animate( animation1, duration, options.easing ) .animate( animation2, duration, options.easing ) .queue( done ); $.effects.unshift( element, queuelen, 4 ); } ); } );
Save Changes
Rename File
Rename