-
Notifications
You must be signed in to change notification settings - Fork 2
/
Aankondiging.html
50 lines (48 loc) · 2.03 KB
/
Aankondiging.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
47
48
49
50
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style/style.css">
<title>Image Editor</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap" rel="stylesheet">
</head>
<body>
<main>
<canvas id="canvas"></canvas>
<div id="controls">
<p>Sleep het plaatje en de ondertitel om te verplaatsen.</p>
<p>Laad het niet in? Vreemd lettertype? Herlaad de pagina/upload de file opnieuw, het werkt 90% of the time all the time.</p>
<p class="blink_text">Zorg dat het plaatje dat je gebruikt rechtenvrij is! Anders kan dit de vereniging vele duizenden euros kosten!</p>
<label name="imageInput">Upload plaatje</label>
<input type="file" id="imageInput" accept="image/*">
<div class="labelInputPair">
<label name="imageSize">Grootte achtergrond:</label>
<input type="range" id="imageSize" min="0" max="10" step="0.01" value="1">
</div>
<div class="labelInputPair">
<label name="titelText">Titel:</label>
<textarea id="titelText">Jouw titel hier</textarea>
</div>
<div class="labelInputPair">
<label name="onderTitel">Ondertitel:</label>
<textarea id="onderTitel">Jouw ondertitel hier</textarea>
</div>
<div class="labelInputPair">
<label name="groepsnaam">Groepsnaam:</label>
<input type="text" id="groepsnaam" value="socialistische jongeren"></textarea>
</div>
<br>
<button id="downloadButton" onclick="download('Aankondiging')">Download</button>
</div>
</main>
<script src="js/shared.js"></script>
<script src="js/abstractLayer.js"></script>
<script src="js/text.js"></script>
<script src="js/resizable.js"></script>
<script src="js/imgWrapper.js"></script>
<script src="js/aankondiging.js"></script>
</body>
</html>