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) | 2007.10.17 |
---|---|
그라데이션 툴팁 만들기 (0) | 2007.10.17 |
공지용 하루에 한번씩 새창(?) 열기. (0) | 2007.10.17 |
공지용 하루에 한번씩 새창(?) 열기. (0) | 2007.10.17 |
toggle(토글)... 숨겼다 보여줬다... (0) | 2007.10.17 |
유니코드/아스키코드 Keycode 값. (0) | 2007.10.17 |
유니코드/아스키코드 Keycode 값. (0) | 2007.10.17 |
방문객의 아이피(IP)를 내 홈에 달아보자. (0) | 2007.10.17 |
방문객의 아이피(IP)를 내 홈에 달아보자. (0) | 2007.10.17 |
마우스 따라다니는 시계 (0) | 2007.10.17 |