<!DOCTYPE html>
<html lang="ko">
<head>
<meta name="viewport" content="width=device-width">
<meta charset="UTF-8">
<link rel="stylesheet" href="https://meyerweb.com/eric/tools/css/reset/reset.css">
<title>Moving box</title>
<style>
#box {
width: 200px;
background-color: plum;
line-height: 200px;
text-align: center;
font-size: 2em;
font-weight: bold;
color: pink;
}
</style>
<script>
window.addEventListener('load', function () {
const box = document.getElementById('box');
box.addEventListener('click', function () {
this.style.transitionDuration = '1s';
this.style.marginLeft = '600px';
window.setTimeout(function () {
box.style.marginLeft = null;
}, 1000);
});
});
</script>
</head>
<body>
<div id="box">BOX</div>
</body>
</html>
