This plugin extends jQuery's built-in .toggle()
method. If jQuery UI is not loaded, calling the .toggle()
method may not fail directly, as the method still exists. However, the expected behavior will not occur.
A string indicating which effect to use for the transition.
Effect-specific properties and easing.
A string or number determining how long the animation will run.
A function to call once the animation is complete, called once per matched element.
All animation settings. The only required property is effect
.
A string indicating which effect to use for the transition.
A string indicating which easing function to use for the transition.
A string or number determining how long the animation will run.
A function to call once the animation is complete, called once per matched element.
A Boolean indicating whether to place the animation in the effects queue. If false, the animation will begin immediately. As of jQuery 1.7, the queue option can also accept a string, in which case the animation is added to the queue represented by that string.
Toggle a div using the fold effect.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | <!doctype html> < html lang = "en" > < head > < meta charset = "utf-8" > < title >toggle demo</ title > < link rel = "stylesheet" href = "//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css" > < style > div { width: 100px; height: 100px; background: #ccc; border: 1px solid #000; } </ style > < script src = "//code.jquery.com/jquery-1.10.2.js" ></ script > < script src = "//code.jquery.com/ui/1.11.4/jquery-ui.js" ></ script > </ head > < body > < button >toggle the div</ button > < div ></ div > < script > $( "button" ).click(function() { $( "div" ).toggle( "fold", 1000 ); }); </ script > </ body > </ html > |
Please login to continue.