返回鼠标移上去变红......登陆

鼠标移上去变红色,点击变蓝色,移走的时候变回白色

星空下的夜语2019-03-08 15:07:11723
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>js动画</title>
</head>
<body>
<div style="width: 200px;height: 200px;border: 1px solid black;margin: 0 auto;" onmouseover="myonmouseover(this)" onmouseout="myonmouseout(this)" onmousedown="myonmousedown(this)"></div>
<script type="text/javascript">
function myonmouseover(x){
x.style.background="#f40"
}
function myonmouseout(y){
y.style.background="#fff"
}
function myonmousedown(z){
z.style.background="blue"
}
</script>
</body>
</html>


最新手记推荐

• 用composer安装thinkphp框架的步骤• 省市区接口说明• 用thinkphp,后台新增栏目• 管理员添加编辑删除• 管理员添加编辑删除

全部回复(0)我要回复

暂无评论~
  • 取消回复发送