$(function () {
baloonDown();
function baloonUp() {
$('#sale_baloon').animate({
'bottom': 30
}, 1000, null, baloonDown);
}
function baloonDown() {
$('#sale_baloon').animate({
'bottom': 20
}, 700, null, baloonUp);
}
});
'코딩 > javascript+jquery' 카테고리의 다른 글
IE에서만 alert 띄우기 (0) | 2020.07.16 |
---|