/
usr
/
share
/
javascript
/
jquery-ui
/
ui
/
effects
/
/usr/share/javascript/jquery-ui/ui/effects
mkdir
upload
Name
Size
Mode
Actions
effect-blind.js
1640
0644
edit
dl
rm
effect-blind.min.js
928
0644
edit
dl
rm
effect-bounce.js
2656
0644
edit
dl
rm
effect-bounce.min.js
1283
0644
edit
dl
rm
effect-clip.js
1573
0644
edit
dl
rm
effect-clip.min.js
912
0644
edit
dl
rm
effect-drop.js
1591
0644
edit
dl
rm
effect-drop.min.js
836
0644
edit
dl
rm
effect-explode.js
2920
0644
edit
dl
rm
effect-explode.min.js
1228
0644
edit
dl
rm
effect-fade.js
964
0644
edit
dl
rm
effect-fade.min.js
395
0644
edit
dl
rm
effect-fold.js
2181
0644
edit
dl
rm
effect-fold.min.js
1270
0644
edit
dl
rm
effect-highlight.js
1239
0644
edit
dl
rm
effect-highlight.min.js
558
0644
edit
dl
rm
effect-puff.js
991
0644
edit
dl
rm
effect-puff.min.js
377
0644
edit
dl
rm
effect-pulsate.js
1563
0644
edit
dl
rm
effect-pulsate.min.js
715
0644
edit
dl
rm
effect-scale.js
1369
0644
edit
dl
rm
effect-scale.min.js
626
0644
edit
dl
rm
effect-shake.js
1880
0644
edit
dl
rm
effect-shake.min.js
1049
0644
edit
dl
rm
effect-size.js
5414
0644
edit
dl
rm
effect-size.min.js
3299
0644
edit
dl
rm
effect-slide.js
1963
0644
edit
dl
rm
effect-slide.min.js
1097
0644
edit
dl
rm
effect-transfer.js
884
0644
edit
dl
rm
effect-transfer.min.js
302
0644
edit
dl
rm
Edit:
/usr/share/javascript/jquery-ui/ui/effects/effect-highlight.js
(1239B)
/*! * jQuery UI Effects Highlight 1.13.1 * http://jqueryui.com * * Copyright jQuery Foundation and other contributors * Released under the MIT license. * http://jquery.org/license */ //>>label: Highlight Effect //>>group: Effects //>>description: Highlights the background of an element in a defined color for a custom duration. //>>docs: http://api.jqueryui.com/highlight-effect/ //>>demos: http://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( "highlight", "show", function( options, done ) { var element = $( this ), animation = { backgroundColor: element.css( "backgroundColor" ) }; if ( options.mode === "hide" ) { animation.opacity = 0; } $.effects.saveStyle( element ); element .css( { backgroundImage: "none", backgroundColor: options.color || "#ffff99" } ) .animate( animation, { queue: false, duration: options.duration, easing: options.easing, complete: done } ); } ); } );
Save
cmd:
run