<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<style type="text/css">
.btn_wrap{
text-align: center; width: 400px;
}
#btn{
background: #06f; color: #fff; padding: 5px 20px; border-radius: 20px;cursor: pointer;
}
</style>
<!-- window.setTimeout(function(){},밀리초) : 지정된 시간 후 자동으로 행해짐 -->
</head>
<body onload="setTimeout('window.close()',5000);">
<p><img alt="photo" src="../image/popup4.jpg" width="400" height="300"></p>
<p class="btn_wrap"><input type="button" value="닫기" id="btn" onclick="window.close()"></p>
</body>
</html>

'JavaScript' 카테고리의 다른 글
| 210923_select+url (0) | 2021.09.23 |
|---|---|
| 210923_select+onchange (0) | 2021.09.23 |
| 210923_jsp+ (0) | 2021.09.23 |
| 210923_event+button+confirm+prompt (0) | 2021.09.23 |
| 210923_Event+confirm (0) | 2021.09.23 |