首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

容易的鼠标滑动效果

2012-08-30 
简单的鼠标滑动效果htmlheadtitlechangecolor/title/headbodydivstylewidth:200pxheight:

简单的鼠标滑动效果
<html>

<head>

<title>changecolor</title>

</head>

<body>
    <div  style="width:200px;height:100px;background:maroon;"
         onmouseover="changeColor('maroon')">蓝色</div>
    <div style="width:200px;height:100px;background:red;"
         onmouseover="changeColor('red')">红色</div>
    <div style="width:200px;height:100px;background:yellow"
         onmouseover="changeColor('yellow')">黄色</div>

</body>

<script language="javascript" type="text/javascript">
    function changeColor(op){
        document.bgColor = op;
    }
</script>
</html>

热点排行