-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (45 loc) · 1.51 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html lang="en">
<head>
<title>Guess the Sketch</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style.css">
</head>
<body>
<h1>// guess the sketch</h1>
<h4>Powered by <a target="_blank" href="https://magenta.tensorflow.org/">magenta.js</a> & <a target="_blank" href="https://magenta.tensorflow.org/sketch-rnn-demo">sketch-rnn</a></h4>
<h4>Peek the <a target="_blank" href="https://glitch.com/edit/#!/guess-the-sketch">code</a></h4>
<h4><a class="none" target="_blank" href="https://github.com/MichaelE1/guess-sketch">@MichaelE1</a></h4>
<div class="container">
<div id="sketch"></div>
<h3 class="loading">Loading...</h3>
<div class="btns-container">
<div class="btn">
<h3>1</h3>
</div>
<div class="btn">
<h3>2</h3>
</div>
<div class="btn">
<h3>3</h3>
</div>
<div class="btn">
<h3>4</h3>
</div>
<div class="btn">
<h3>5</h3>
</div>
<div class="btn">
<h3>6</h3>
</div>
</div>
<div class="answer">
</div>
</div>
</body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.6.1/p5.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@magenta/[email protected]/dist/magentasketch.min.js"></script>
<script src="script.js"></script>
</html>