[ Web 관련 ]/jQuery
제이쿼리 애니메이션 + 속도 주기
BIZLAB
2022. 6. 3. 17:27
<script>
function open(){
//$("#floatralking .box").width(230);
$("#floatralking .box").animate({'width': '230px'}, "fast");
$(".open").hide();
$(".close").show();
}
function close(){
//$("#floatralking .box").width(50);
$("#floatralking .box").animate({'width': '50px'}, "fast");
$(".open").show();
$(".close").hide();
}
</script>