21006_animate,button,each
DOCTYPE html> Insert title here 애니메이션#1 애니메이션#2 $("#box").css({ "width":"100px", "height":"100px", "border":"1px solid red" }); //버튼이벤트..id 안 줬을때 $("button:eq(0)").click(function() { $("#box").animate({width: "+=100px", borderWidth: "20px",opacity: "0.2", marginLeft: "300px"},3000); }); $("button:eq(1)").click(function() { $("#box").animate({width: "-=100px", borderWidth: "1px",opacity: "1", mar..