|
Fade in/out elements
This example shows how to fadein/fadeout the elements using jQuery API.
03 | < script type = "text/javascript" src = "js/jquery.js" ></ script > |
04 | < script type = "text/javascript" > |
08 | $("#FadeIn").click( function() { |
11 | $("#test").fadeIn("slow",function(){ |
12 | alert("FadeIn Done."); |
17 | $("#FadeOut").click( function() { |
19 | $("#test").fadeOut("slow",function(){ |
20 | alert("FadeOut Done."); |
30 | < input type = "button" id = "FadeIn" value = "FadeIn" /> |
31 | < input type = "button" id = "FadeOut" value = "FadeOut" /> |
35 | < div id = "test" style = "background-color:pink;width:200px;height:200px" > |
|
|
|