깜빡이는 효과
작성일 16-04-07 09:51
페이지 정보
작성자서방님 조회 116회 댓글 0건본문
<script type="text/javascript">
<!--
// 남은 인원 깜빡임 처리
$(document).ready(function() {
setInterval(function() {
var blink = document.getElementById("now_cnt");
blink.style.visibility = blink.style.visibility == "" ? "hidden" : ""
}, 500); // 깜빡이는 속도 조절 (클수록 느리게)
})
//-->
</script>
a
댓글목록
등록된 댓글이 없습니다.