2015年5月31日日曜日

マウスオーバーで文字を変化させる

マウスオーバーで文字色が変わる
<span style="color: rgb(255, 215, 0);"
onmouseover="this.style.color='#ff00ff'"
onmouseout="this.style.color='#FFD700'">
マウスオーバーで文字色が変わる
</span>


マウスオーバーで太文字 になる
<font onmouseout="this.style.fontWeight='normal'"
onmouseover="this.style.fontWeight='bold'"
style="color: gold; font-size: 160%; font-weight: normal;">マウスオーバーで太文字
になる</font>


マウスオーバーで文字が斜 体になる
<font onmouseout="this.style.fontStyle='normal'"
onmouseover="this.style.fontStyle='oblique'"
style="color: gold; font-style: normal;">マウスオーバーで文字が斜
体になる</font>