------------------
헤드와 헤드사이에
------------------
<script language="JavaScript1.2">
function high(which2){
theobject=which2
highlighting=setInterval("highlightit(theobject)",50)
}
function low(which2){
clearInterval(highlighting)
which2.filters.alpha.opacity=20
}
function highlightit(cur2){
if (cur2.filters.alpha.opacity<100)
cur2.filters.alpha.opacity+=20
else if (window.highlighting)
clearInterval(highlighting)
}
</script>
----------------------
<body> 와 </body>사이에
----------------------
<img src="그림주소" style="filter:alpha(opacity=20)" onmouseover="high(this)" onmouseout="low(this)">
헤드와 헤드사이에
------------------
<script language="JavaScript1.2">
function high(which2){
theobject=which2
highlighting=setInterval("highlightit(theobject)",50)
}
function low(which2){
clearInterval(highlighting)
which2.filters.alpha.opacity=20
}
function highlightit(cur2){
if (cur2.filters.alpha.opacity<100)
cur2.filters.alpha.opacity+=20
else if (window.highlighting)
clearInterval(highlighting)
}
</script>
----------------------
<body> 와 </body>사이에
----------------------
<img src="그림주소" style="filter:alpha(opacity=20)" onmouseover="high(this)" onmouseout="low(this)">
'인터넷관련' 카테고리의 다른 글
홈에 머문시간을 제목표시줄과 상태바에 실시간으로 알려줍니다 (0) | 2008.02.19 |
---|---|
마우스 커스 이동,클릭만으로 배경색상을 바꾸어보자 (0) | 2008.02.19 |
창을 열면 인사하는 간단한 스크립트 - 프롬프트 (0) | 2008.02.19 |
자바스크립트로 변수처리하기! (0) | 2008.02.16 |
페이지마다 타이틀 변경하기 (0) | 2008.02.16 |
스크립트로 쿠키 굽기 (0) | 2008.02.16 |
사용자 해상도 알아내는 스크립트 (0) | 2008.02.16 |
링크 클릭시 상단으로 이동하지 않게.. (0) | 2008.02.16 |