-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (52 loc) · 1.96 KB
/
index.html
File metadata and controls
52 lines (52 loc) · 1.96 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
47
48
49
50
51
52
<html>
<head>
<title>YouTube Thumbnail</title>
<link rel="stylesheet" href="css/reset.css" />
<link rel="stylesheet" href="css/main.css" />
</head>
<body>
<h1>Thumbnail Generator</h1>
<p>Generating YouTube video thumbnails for GitHub READMEs.</p>
<div class="element">
<img id="yt-thumb" style="display: none"></img>
</div>
<div class="element">
<label for="yt-title">Title:</label>
<input id="yt-title"
type="text"
placeholder="Title"
value="Doing UI in C to Piss Off the React devs" />
<output id="yt-title-pad"></output>
</div>
<div class="element">
<label for="yt-link">Link:</label>
<input id="yt-link"
type="text"
placeholder="YouTube Link"
value="https://www.youtube.com/watch?v=SRgLA8X5N_4" />
<output id="yt-title-pad"></output>
</div>
<div class="element">
<div id="yt-error"></div>
</div>
<div class="element">
<label for="yt-width">Width:</label>
<input id="yt-width" type="range" step="10" min="100" max="1920" value="400" />
<output id="yt-width-display"></output>
</div>
<div class="element">
<label for="yt-font">Font size:</label>
<input id="yt-font" type="range" step="1" min="8" max="128" value="17" />
<output id="yt-font-display"></output>
</div>
<div class="element">
<label for="yt-pad">Padding:</label>
<input id="yt-pad" type="range" step="1" min="0" max="960" value="35" />
<output id="yt-pad-display"></output>
</div>
<div class="element">
<canvas id="yt-canvas" width="480" height="360"></canvas>
</div>
<script src='js/index.js'></script>
</body>
</html>