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


動作ブラウザ 【 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 - - - - - - - - - - × × -

ポイント document.all["myText"].style.backgroundColor = col; document.all["myText"].style.fontSize = size;
説  明 文字のスタイルを変更するにはaタグにid="myText"としてIDを指定しておきます。IDを指定しておけば「document.all["ID名"].style.スタイル属性名」として各種スタイルを設定することができます。
サンプル <html> <head> <title>マウスが重なったら文字のスタイルを変える</title> <script Language="JavaScript"><!-- function change(col,size) { document.all["myText"].style.backgroundColor = col; document.all["myText"].style.fontSize = size; } // --></script> </head> <body bgcolor="white"> <a href="#" id="myText" onMouseover="change('orange','24pt')" onMouseout="change('white','12pt')">マウスを乗せて</a> </body> </html>
補足説明 aタグであればa:hover{ background-color:orange; font-size:24pt; }のようにスタイルシートで指定することもできます。

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

写真素材 PIXTA