end属性とbegin属性でマウスが乗ったらスタイルの変わる文字を作る(mouseoutとmouseover)

マウスが乗ったらスタイル(style属性で指定したインラインスタイル)が
有効になり、マウスを外すと無効になる。end属性とbegin属性には、
mouseoutとmouseoverを指定できる。指定は次のとおり。

<div id="div1" class="time" end="div1.mouseout" begin="div1.mouseover" timeaction="style" style="background-color:red;color:white;">MAKOTO3.NET
</div>

なお、thisを使って次のように指定した場合は、動かなかった。

<div class="time" end="this.mouseout" begin="this.mouseover" timeaction="style" style="background-color:red;color:white;">MAKOTO3.NET
</div>


MAKOTO3.NET