author | ymh <ymh.work@gmail.com> |
Fri, 05 Sep 2025 18:52:52 +0200 | |
changeset 22 | 8c2e4d02f4ef |
parent 21 | 48c4eec2b7e6 |
permissions | -rw-r--r-- |
18 | 1 |
/*! |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2 |
* jQuery UI Effects Shake 1.13.3 |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
3 |
* https://jqueryui.com |
18 | 4 |
* |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5 |
* Copyright OpenJS Foundation and other contributors |
18 | 6 |
* Released under the MIT license. |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
7 |
* https://jquery.org/license |
18 | 8 |
*/ |
9 |
||
10 |
//>>label: Shake Effect |
|
11 |
//>>group: Effects |
|
12 |
//>>description: Shakes an element horizontally or vertically n times. |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
13 |
//>>docs: https://api.jqueryui.com/shake-effect/ |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
14 |
//>>demos: https://jqueryui.com/effect/ |
18 | 15 |
|
16 |
( function( factory ) { |
|
19 | 17 |
"use strict"; |
18 |
||
18 | 19 |
if ( typeof define === "function" && define.amd ) { |
20 |
||
21 |
// AMD. Register as an anonymous module. |
|
22 |
define( [ |
|
23 |
"jquery", |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
24 |
"../version", |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
25 |
"../effect" |
18 | 26 |
], factory ); |
27 |
} else { |
|
28 |
||
29 |
// Browser globals |
|
30 |
factory( jQuery ); |
|
31 |
} |
|
19 | 32 |
} )( function( $ ) { |
33 |
"use strict"; |
|
18 | 34 |
|
35 |
return $.effects.define( "shake", function( options, done ) { |
|
36 |
||
37 |
var i = 1, |
|
38 |
element = $( this ), |
|
39 |
direction = options.direction || "left", |
|
40 |
distance = options.distance || 20, |
|
41 |
times = options.times || 3, |
|
42 |
anims = times * 2 + 1, |
|
43 |
speed = Math.round( options.duration / anims ), |
|
44 |
ref = ( direction === "up" || direction === "down" ) ? "top" : "left", |
|
45 |
positiveMotion = ( direction === "up" || direction === "left" ), |
|
46 |
animation = {}, |
|
47 |
animation1 = {}, |
|
48 |
animation2 = {}, |
|
49 |
||
50 |
queuelen = element.queue().length; |
|
51 |
||
52 |
$.effects.createPlaceholder( element ); |
|
53 |
||
54 |
// Animation |
|
55 |
animation[ ref ] = ( positiveMotion ? "-=" : "+=" ) + distance; |
|
56 |
animation1[ ref ] = ( positiveMotion ? "+=" : "-=" ) + distance * 2; |
|
57 |
animation2[ ref ] = ( positiveMotion ? "-=" : "+=" ) + distance * 2; |
|
58 |
||
59 |
// Animate |
|
60 |
element.animate( animation, speed, options.easing ); |
|
61 |
||
62 |
// Shakes |
|
63 |
for ( ; i < times; i++ ) { |
|
64 |
element |
|
65 |
.animate( animation1, speed, options.easing ) |
|
66 |
.animate( animation2, speed, options.easing ); |
|
67 |
} |
|
68 |
||
69 |
element |
|
70 |
.animate( animation1, speed, options.easing ) |
|
71 |
.animate( animation, speed / 2, options.easing ) |
|
72 |
.queue( done ); |
|
73 |
||
74 |
$.effects.unshift( element, queuelen, anims + 1 ); |
|
75 |
} ); |
|
76 |
||
19 | 77 |
} ); |