-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
33 lines (29 loc) · 1020 Bytes
/
index.html
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
<!DOCTYPE html>
<html lang="en" >
<head>
<title>Expressive Robot Face for Tablet</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="buttons">
<button onclick="eyes.startBlinking()">Start Blinking</button>
<button onclick="eyes.stopBlinking()">Stop Blinking</button>
<button onclick="eyes.blink()" >Blink</button>
<button onclick="eyes.express({type: 'happy'})" >Happy</button>
<button onclick="eyes.express({type: 'sad'})" >Sad</button>
<button onclick="eyes.express({type: 'angry'})" >Mad</button>
<button onclick="eyes.express({type: 'focused'})" >Focused</button>
<button onclick="eyes.express({type: 'confused'})" >Confused</button>
</div>
<div class="face">
<div class="eye left">
<div class="eyelid upper"></div>
<div class="eyelid lower"></div>
</div>
<div class="eye right">
<div class="eyelid upper"></div>
<div class="eyelid lower"></div>
</div>
</div>
<script src="index.js"></script>
</body>