forked from MarcelBostelaar/test.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AankondigingNieuw.html
52 lines (50 loc) · 2.17 KB
/
AankondigingNieuw.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
51
52
<!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="titelSize">Grootte titel:</label>
<input type="range" id="titelSize" min="50" max="500" step="1" value="150">
</div>
<!-- <div class="labelInputPair"> -->
<!-- <label name="groepsnaam">Groepsnaam:</label> -->
<!-- <textarea type="text" id="groepsnaam">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/rect.js"></script>
<script src="js/textbox.js"></script>
<script src="js/resizable.js"></script>
<script src="js/imgWrapper.js"></script>
<script src="js/aankondigingnieuw.js"></script>
</body>
</html>