http://oxtag.com/html/ex/toggle.html
<script>
function toggle(el) {
if (el.style.display == 'none'){
el.filters.blendTrans.Apply();
el.style.display = '';
el.filters.blendTrans.Play()
}
else {
el.filters.blendTrans.Apply();
el.style.display = 'none';
el.filters.blendTrans.Play()
}
}
</script>
</head>
<body>
<SPAN style='CURSOR: hand' onclick='toggle(abc);'><font size=2>show</font></span>
<div id='abc' style='display:inline;width:100%;filter:blendTrans(Duration=0.5)'>
<table width=300 height=30 bgcolor=737373>
<tr><td style=font-size:9pt align=center>
show 클릭시 사라짐. 재 클릭시 보여줌.
</tr></td>
</table>
</div>
'인터넷관련' 카테고리의 다른 글
프레임 화면이 아닌 페이지 접근시 차단이나 다른 페이지로 이동 (0) | 2008.01.29 |
---|---|
접속시마다 백그라운드 이미지 랜덤으로 바꾸기 (0) | 2008.01.29 |
그라데이션 툴팁 만들기 (0) | 2008.01.29 |
공지용 하루에 한번씩 새창(?) 열기. (0) | 2008.01.29 |
유니코드/아스키코드 Keycode 값. (0) | 2008.01.29 |
페이지 로딩 및 마우스 오버시 사운드 (0) | 2008.01.29 |
마우스 따라다니는 시계 (0) | 2008.01.29 |
위에서 아래로 떨어지는 메뉴 (0) | 2008.01.29 |