マウスが重なったら文字のスタイルを変える(複数)


動作ブラウザ 【 IE:4.0  NN:-
Internet Explorer Netscape Navigator DreamPassport iCab
3.0x 4.0x 4.5 5.0x 5.5 6.0 2.0x 3.0x 4.0x 4.x 6.0 2 3 2.x
Windows × - × × × × × - × -
Macintosh × - - × × × × × - - ×
UNIX - - - - - - × × × × × - - -
Dreamcast - - - - - - - - - - × × -

ポイント obj.style.backgroundColor = col; obj.style.fontSize = size;
説  明 文字のスタイルを変更するにはaタグにidを個別に指定する方法とthisでオブジェクトごと渡します。このようにオブジェクトごと渡せば関数側では「this.style.スタイル属性名」として各種スタイルを設定することができます。
サンプル <html> <head> <title>マウスが重なったら文字のスタイルを変える(複数)</title> <script Language="JavaScript"><!-- function change(obj,col,size) { obj.style.backgroundColor = col; obj.style.fontSize = size; } // --></script> </head> <body bgcolor="white"> <a href="#" onMouseover="change(this,'orange','24pt')" onMouseout="change(this,'white','12pt')">マウスを乗せて(1)</a><br> <a href="#" onMouseover="change(this,'orange','24pt')" onMouseout="change(this,'white','12pt')">マウスを乗せて(2)</a><br> </body> </html>
補足説明 aタグであればa:hover{ background-color:orange; font-size:24pt; }のようにスタイルシートで指定することもできます。

■サンプルスクリプトを実行する >>実行
■各ブラウザでの動作結果を見る >>View!

写真素材 PIXTA