$("#btn-linear").click(function() {
$("#test-linear").animate({ width: "toggle" }, "slow", "linear");
});
$("#btn-swing").click(function() {
$("#test-swing").animate({ width: "toggle" }, "slow", "swing");
});
$("#btn-jswing").click(function() {
$("#test-jswing").animate({ width: "toggle" }, "slow", "jswing");
});
$("#btn-easeInQuad").click(function() {
$("#test-easeInQuad").animate({ width: "toggle" }, "slow", "easeInQuad");
});
$("#btn-easeOutQuad").click(function() {
$("#test-easeOutQuad").animate({ width: "toggle" }, "slow", "easeOutQuad");
});
$("#btn-easeInOutQuad").click(function() {
$("#test-easeInOutQuad").animate({ width: "toggle" }, "slow", "easeInOutQuad");
});
$("#btn-easeInCubic").click(function() {
$("#test-easeInCubic").animate({ width: "toggle" }, "slow", "easeInCubic");
});
$("#btn-easeOutCubic").click(function() {
$("#test-easeOutCubic").animate({ width: "toggle" }, "slow", "easeOutCubic");
});
$("#btn-easeInOutCubic").click(function() {
$("#test-easeInOutCubic").animate({ width: "toggle" }, "slow", "easeInOutCubic");
});
$("#btn-easeInQuart").click(function() {
$("#test-easeInQuart").animate({ width: "toggle" }, "slow", "easeInQuart");
});
$("#btn-easeOutQuart").click(function() {
$("#test-easeOutQuart").animate({ width: "toggle" }, "slow", "easeOutQuart");
});
$("#btn-easeInOutQuart").click(function() {
$("#test-easeInOutQuart").animate({ width: "toggle" }, "slow", "easeInOutQuart");
});
$("#btn-easeInQuint").click(function() {
$("#test-easeInQuint").animate({ width: "toggle" }, "slow", "easeInQuint");
});
$("#btn-easeOutQuint").click(function() {
$("#test-easeOutQuint").animate({ width: "toggle" }, "slow", "easeOutQuint");
});
$("#btn-easeInOutQuint").click(function() {
$("#test-easeInOutQuint").animate({ width: "toggle" }, "slow", "easeInOutQuint");
});
$("#btn-easeInSine").click(function() {
$("#test-easeInSine").animate({ width: "toggle" }, "slow", "easeInSine");
});
$("#btn-easeOutSine").click(function() {
$("#test-easeOutSine").animate({ width: "toggle" }, "slow", "easeOutSine");
});
$("#btn-easeInOutSine").click(function() {
$("#test-easeInOutSine").animate({ width: "toggle" }, "slow", "easeInOutSine");
});
$("#btn-easeInExpo").click(function() {
$("#test-easeInExpo").animate({ width: "toggle" }, "slow", "easeInExpo");
});
$("#btn-easeOutExpo").click(function() {
$("#test-easeOutExpo").animate({ width: "toggle" }, "slow", "easeOutExpo");
});
$("#btn-easeInOutExpo").click(function() {
$("#test-easeInOutExpo").animate({ width: "toggle" }, "slow", "easeInOutExpo");
});
$("#btn-easeInCirc").click(function() {
$("#test-easeInCirc").animate({ width: "toggle" }, "slow", "easeInCirc");
});
$("#btn-easeOutCirc").click(function() {
$("#test-easeOutCirc").animate({ width: "toggle" }, "slow", "easeOutCirc");
});
$("#btn-easeInOutCirc").click(function() {
$("#test-easeInOutCirc").animate({ width: "toggle" }, "slow", "easeInOutCirc");
});
$("#btn-easeInElastic").click(function() {
$("#test-easeInElastic").animate({ width: "toggle" }, "slow", "easeInElastic");
});
$("#btn-easeOutElastic").click(function() {
$("#test-easeOutElastic").animate({ width: "toggle" }, "slow", "easeOutElastic");
});
$("#btn-easeInOutElastic").click(function() {
$("#test-easeInOutElastic").animate({ width: "toggle" }, "slow", "easeInOutElastic");
});
$("#btn-easeInBack").click(function() {
$("#test-easeInBack").animate({ width: "toggle" }, "slow", "easeInBack");
});
$("#btn-easeOutBack").click(function() {
$("#test-easeOutBack").animate({ width: "toggle" }, "slow", "easeOutBack");
});
$("#btn-easeInOutBack").click(function() {
$("#test-easeInOutBack").animate({ width: "toggle" }, "slow", "easeInOutBack");
});
$("#btn-easeInBounce").click(function() {
$("#test-easeInBounce").animate({ width: "toggle" }, "slow", "easeInBounce");
});
$("#btn-easeOutBounce").click(function() {
$("#test-easeOutBounce").animate({ width: "toggle" }, "slow", "easeOutBounce");
});
$("#btn-easeInOutBounce").click(function() {
$("#test-easeInOutBounce").animate({ width: "toggle" }, "slow", "easeInOutBounce");
});