鼠标移上去变红色,点击变蓝色,移走的时候变回白色
<!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>