<script language="javascript" type="text/javascript">
<!--
/*
Flashing text color Script- ? Dynamic Drive (www.dynamicdrive.com)
Visit http://www.dynamicdrive.com for this script
Credit must stay intact for use
*/
//configure interval btw flash (1000=1 second)
var speed=500
function flashit(){
var crosstable=document.getElementById? document.getElementById("check_btn") : document.all? document.all.myexample : ""
if (crosstable){
if (crosstable.style.backgroundColor.indexOf("rgb(12, 31, 51)")!=-1)
crosstable.style.backgroundColor="#077af4"
else
crosstable.style.backgroundColor="rgb(12, 31, 51)"
}
}
setInterval("flashit()", speed)
//-->
</script>
<button id="check_btn">깜빡임</button>
반응형
'웹퍼블리싱 > jquery' 카테고리의 다른 글
svg inline animaiton 예시 (0) | 2018.12.27 |
---|---|
[제이쿼리] hasclass / 클릭했을때 if 특정 영역이 아니면 이벤트 발생 시키기 (0) | 2018.11.07 |
[jquery] A버튼 눌렀을때 B버튼도 동시에 눌리게하기 trigger('click') (0) | 2018.09.14 |
[jquery]특정 태그로 스크롤 이동하기 (0) | 2018.08.22 |
[jquery] 클릭한 요소 제외하고 이벤트 걸기 not() (1) | 2018.08.22 |
댓글