37 lines
743 B
HTML
37 lines
743 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Document</title>
|
|
<style>
|
|
#divtrue {width: 200px;height: 100px;background: rgb(70, 231, 218);}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>hhh</h1>
|
|
<p>33</p>
|
|
<p>22</p>
|
|
<p>11</p>
|
|
|
|
<input type="checkbox" />
|
|
<div id="divtrue" onmouseover="ChangeColor('divtrue')">
|
|
wuhu take off
|
|
</div>
|
|
|
|
|
|
<script>
|
|
function ChangeColor(divID)
|
|
{
|
|
|
|
var tempDiv= document.getElementById(divID);
|
|
|
|
tempDiv.style.width= '300px' ;
|
|
tempDiv.style.height= '700px' ;
|
|
tempDiv.style.background= 'red' ;
|
|
}
|
|
|
|
</script>
|
|
|
|
</body>
|
|
</html> |