2021-01-07 HTML onmouse 예제

쪼레비·2021년 3월 30일
<!DOCTYPE html>
<html>
<head>
<meta charset="EUC-KR">
<title>Insert title here</title>

<script src="6-1.js">
<!--
	function over(obj) {
		obj.style.background = "yellow";
	}

	function out(obj) {
		obj.style.background = "white";
	}
-->
</script>

</head>
<body>
	<h3>마우스를 올려보세요</h3>
	<hr>
	<div onmouseover="over(this)" onmouseout="out(this)">
		여기에 마우스 올리면 배경색이 바뀜
	</div>

	<!--
		글자가 차지하는 부분만 색 바꿔보기
	-->
</body>
</html>
profile
잠팅이

0개의 댓글