Files
excel-download/react_webgame/4. 반응속도 체크/index.html
2021-03-05 22:51:33 +09:00

28 lines
502 B
HTML

<html>
<head>
<meta charset="utf-8"/>
<title>반응속도체크</title>
<style>
#screen {
width: 300px;
height: 200px;
text-align: center;
user-select: none;
}
#screen.waiting {
background-color: aqua;
}
#screen.ready {
background-color: red;
color: white;
}
#screen.now {
background-color: greenyellow;
}
</style>
</head>
<body>
<div id="root"></div>
<script src="./dist/app.js"></script>
</body>
</html>