TOP /ちょこっとJavaScript ロールオーバーボタン

マウスを当てると画像を入れ替える

<a href="../../index.html">
<img src="top.gif"
onMouseover="this.src='top1.gif'" 
onMouseout="this.src='top.gif'"
alt="トップページにリンク"border=0></a>
トップページにリンク

マウスを当てると画像の透明度が変化する(IE専用)
<a href="../../index.html">
<img src="top.gif"style="filter:alpha(opacity=100);"
onMouseover="this.filters['alpha'].opacity=50" 
onMouseout="this.filters['alpha'].opacity=100"
alt="トップページにリンク"border=0></a>
トップページにリンク

ステータスバーにリンク先を表示しない
<a href="../../index.html"onmouseover="return true;">トップページ</a>
トップページ


HTML/リンク