Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- express for node.js
- 나의 프로젝트
- 주식이야기
- 도커
- ajax
- ror실행
- 명사 분석기
- 명사 뽑아내기
- ejb
- 나의 취미
- php thumbnail
- Node.js
- 베트남어
- 명사 추출기
- docker
- Cross
- scala
- 메일왕창보내는법
- node.js web framework
- nodejs express
- C/C++
- Eclipse
- rss
- 스킨 스쿠버
- Lift
- 디즈니씨
- iBatis
- flex3
- 책이야기
- php
Archives
- Today
- Total
nkdk의 세상
JS :: 페이드인-아웃 효과 본문
이미지에 마우스를 위치하면 이미지가 선명해지거나(fade-in) 흐릿해지는(fade-out) 효과를 줍니다. 인터넷 익스플로러에서 작동됩니다.
<html>
<script language="JavaScript">
<!--var start_opacity = 30;
function imgFade(direct) {
if (window.timer) clearInterval(timer);
dct = direct;
timer = setInterval("flow_filter()", 5);
}function flow_filter() {
var imgFilter = img1.filters.alpha;if (dct == 1) {
if (imgFilter.opacity < 100)
imgFilter.opacity += 10;
else
clearInterval(timer);
} else {
if (imgFilter.opacity > start_opacity)
imgFilter.opacity -= 10;
else
clearInterval(timer);
}
}// -->
</script><body>
<img name="img1" src="img1.jpg" style="filter:alpha(opacity=30)" onmouseover="imgFade(1)" onmouseout="imgFade(2)">
</body>
</html>