////////////////////////“行为”文档开始////////////////////////////
//给“行为”增加四个鼠标事件
//给“行为”定义二个方法,注意NAME的值里不能加括号
//定义一个保存字体颜色的变量
var font_color;
//定义向下移动文字的方法
function move_down()
{
element.style.posTop += 10;
}
//定义向右移动文字的方法
function move_right()
{
element.style.posLeft += 10;
}
//定义鼠标onmouseup事件的调用函数
function font2blue()
{
if (event.srcElement == element)
{
element.style.color = “blue”;
}
}
//定义鼠标onmousedown事件的调用函数
function font2yellow()
{
if (event.srcElement == element)
{
element.style.color = “yellow”;
}
}
//定义鼠标onmouseover事件的调用函数
function glowit()
{
if (event.srcElement == element)
{
font_color=style.color;
element.style.color = “white”;
element.style.filter = “glow(color=red, strength=2)”;
}
}
//定义鼠标onmouseout事件的调用函数
function noglow()
{
if (event.srcElement == element)
{
element.style.filter = “”;
element.style.color = font_color;
}
}
//////////////////“行为”文档结束///////////////////////////////