2008-11-18 02:55:25 +00:00
|
|
|
|
2008-12-13 09:53:02 +00:00
|
|
|
$(function() {
|
2011-03-03 01:46:19 +00:00
|
|
|
var duration = 1000, wait = 500;
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-12-13 09:53:02 +00:00
|
|
|
$("div.effect")
|
|
|
|
.hover(function() { $(this).addClass("hover"); },
|
|
|
|
function() { $(this).removeClass("hover"); });
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-09-20 17:42:04 +00:00
|
|
|
var effect = function(el, n, o) {
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-09-20 17:42:04 +00:00
|
|
|
$.extend(o, {
|
|
|
|
easing: "easeOutQuint"
|
|
|
|
});
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-09-20 17:42:04 +00:00
|
|
|
$(el).bind("click", function() {
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2011-03-27 11:32:04 +00:00
|
|
|
$(this).addClass("current")
|
|
|
|
// delaying the initial animation makes sure that the queue stays in tact
|
|
|
|
.delay( 10 )
|
|
|
|
.hide( n, o, duration )
|
|
|
|
.delay( wait )
|
|
|
|
.show( n, o, duration, function() {
|
|
|
|
$( this ).removeClass("current");
|
|
|
|
});
|
2008-09-20 17:42:04 +00:00
|
|
|
});
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-09-20 17:42:04 +00:00
|
|
|
};
|
2011-03-03 01:46:19 +00:00
|
|
|
|
|
|
|
$("#hide").click(function() {
|
|
|
|
var el = $(this);
|
|
|
|
el.addClass("current").hide(duration, function() {
|
|
|
|
setTimeout(function() {
|
2011-05-05 04:40:16 +00:00
|
|
|
el.show(duration, function() { el.removeClass("current"); });
|
2011-03-03 01:46:19 +00:00
|
|
|
}, wait);
|
2011-05-05 04:40:16 +00:00
|
|
|
});
|
|
|
|
});
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2011-05-03 13:16:30 +00:00
|
|
|
effect("#blindLeft", "blind", { direction: "left" });
|
|
|
|
effect("#blindUp", "blind", { direction: "up" });
|
|
|
|
effect("#blindRight", "blind", { direction: "right" });
|
|
|
|
effect("#blindDown", "blind", { direction: "down" });
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-09-20 17:42:04 +00:00
|
|
|
effect("#bounce3times", "bounce", { times: 3 });
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-09-20 17:42:04 +00:00
|
|
|
effect("#clipHorizontally", "clip", { direction: "horizontal" });
|
|
|
|
effect("#clipVertically", "clip", { direction: "vertical" });
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-09-20 17:42:04 +00:00
|
|
|
effect("#dropDown", "drop", { direction: "down" });
|
|
|
|
effect("#dropUp", "drop", { direction: "up" });
|
|
|
|
effect("#dropLeft", "drop", { direction: "left" });
|
|
|
|
effect("#dropRight", "drop", { direction: "right" });
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-12-13 09:53:02 +00:00
|
|
|
effect("#explode9", "explode", {});
|
2008-09-20 17:42:04 +00:00
|
|
|
effect("#explode36", "explode", { pieces: 36 });
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2011-03-06 21:24:48 +00:00
|
|
|
effect("#fade", "fade", {});
|
|
|
|
|
2008-09-20 17:42:04 +00:00
|
|
|
effect("#fold", "fold", { size: 50 });
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-12-13 09:53:02 +00:00
|
|
|
effect("#highlight", "highlight", {});
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-09-20 17:42:04 +00:00
|
|
|
effect("#pulsate", "pulsate", { times: 2 });
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-09-20 17:42:04 +00:00
|
|
|
effect("#puff", "puff", { times: 2 });
|
2008-12-13 09:53:02 +00:00
|
|
|
effect("#scale", "scale", {});
|
2011-05-05 04:40:16 +00:00
|
|
|
effect("#size", "size", {});
|
|
|
|
$("#sizeToggle").bind("click", function() {
|
|
|
|
var opts = { to: { width: 300, height: 300 }};
|
|
|
|
$(this).addClass('current')
|
|
|
|
.toggle("size", opts, duration)
|
|
|
|
.delay(wait)
|
|
|
|
.toggle("size", opts, duration, function() {
|
|
|
|
$(this).removeClass("current");
|
|
|
|
});
|
|
|
|
});
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-09-20 17:42:04 +00:00
|
|
|
$("#shake").bind("click", function() { $(this).addClass("current").effect("shake", {}, 100, function() { $(this).removeClass("current"); }); });
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-09-20 17:42:04 +00:00
|
|
|
effect("#slideDown", "slide", { direction: "down" });
|
|
|
|
effect("#slideUp", "slide", { direction: "up" });
|
|
|
|
effect("#slideLeft", "slide", { direction: "left" });
|
|
|
|
effect("#slideRight", "slide", { direction: "right" });
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-09-20 17:42:04 +00:00
|
|
|
$("#transfer").bind("click", function() { $(this).addClass("current").effect("transfer", { to: "div:eq(0)" }, 1000, function() { $(this).removeClass("current"); }); });
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2010-01-21 17:32:52 +00:00
|
|
|
$("#addClass").click(function() {
|
|
|
|
$(this).addClass(function() {
|
|
|
|
window.console && console.log(arguments);
|
|
|
|
return "current";
|
2011-03-06 21:24:48 +00:00
|
|
|
}, duration, function() {
|
2010-01-21 17:32:52 +00:00
|
|
|
$(this).removeClass("current");
|
|
|
|
});
|
|
|
|
});
|
|
|
|
$("#removeClass").click(function() {
|
|
|
|
$(this).addClass("current").removeClass(function() {
|
|
|
|
window.console && console.log(arguments);
|
2011-05-05 04:40:16 +00:00
|
|
|
return "current";
|
2011-03-06 21:24:48 +00:00
|
|
|
}, duration);
|
2010-01-21 17:32:52 +00:00
|
|
|
});
|
|
|
|
$("#toggleClass").click(function() {
|
|
|
|
$(this).toggleClass(function() {
|
|
|
|
window.console && console.log(arguments);
|
2011-05-05 04:40:16 +00:00
|
|
|
return "current";
|
2011-03-06 21:24:48 +00:00
|
|
|
}, duration);
|
2010-01-21 17:32:52 +00:00
|
|
|
});
|
2008-12-13 09:53:02 +00:00
|
|
|
});
|