diff options
Diffstat (limited to 'static/famille.js')
| -rw-r--r-- | static/famille.js | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/static/famille.js b/static/famille.js new file mode 100644 index 0000000..2739020 --- /dev/null +++ b/static/famille.js @@ -0,0 +1,24 @@ +$.fn.wait = function(time, type) { + time = time || 1000; + type = type || "fx"; + return this.queue(type, function() { + var self = this; + setTimeout(function() { + $(self).dequeue(); + }, time); + }); +}; + +$(document).ready(function(){ + $("div.infobox").wait(2000).slideUp("slow"); + $("div.errorbox").wait(2000).slideUp("slow"); + $("#add").click(function(){ + $(".hidden").fadeIn("slow"); + $(this).hide(0); + $("label.info").hide(0); + $(".tohide").hide(0); + }); + $("#kadobutton").click(function(){ + $(".kadoscope").animate({opacity:"1"},"5000"); + }); +});
\ No newline at end of file |
