-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcolor_test.html
More file actions
46 lines (43 loc) · 1.7 KB
/
color_test.html
File metadata and controls
46 lines (43 loc) · 1.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!doctype html>
<html lang="ko">
<head>
<meta charset="utf-8">
<title>잔디밭-색채심리</title>
<meta name="viewport" content="user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, width=device-width, height=device-height">
<link rel="stylesheet" type="text/css" href="./color_test.css">
</head>
<body>
<header>
<h1>잔디밭</h1>
</header>
<article>
<div id="test">
<div id="question">
<h3>마음에 드는 순서대로 4가지색을 선택해주세요 <중복허용></h3>
</div>
<div id="select">
<img id="red" onclick="selecting(this.id)" src="./image/red.png" alt="red">
<img id="blue" onclick="selecting(this.id)" src="./image/blue.png" alt="blue">
<img id="orange" onclick="selecting(this.id)" src="./image/orange.png" alt="orange">
<img id="white" onclick="selecting(this.id)" src="./image/white.png" alt="white">
<img id="pupple" onclick="selecting(this.id)" src="./image/pupple.png" alt="pupple">
<img id="yellow" onclick="selecting(this.id)" src="./image/yellow.png" alt="yellow">
<img id="green" onclick="selecting(this.id)"src="./image/green.png" alt="green">
</div>
<div id="show"></div>
<div class="button" id="reset" onclick="resetButton()">
다시 선택
</div>
<div class="button" id="result" onclick="resultButton()">
결과 확인
</div>
</div>
</article>
<footer>
<div class="advertisement">
</div>
</footer>
<script src="./selecting.js">
</script>
</body>
</html>