-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAnimation2.html
More file actions
50 lines (50 loc) · 1.03 KB
/
Copy pathAnimation2.html
File metadata and controls
50 lines (50 loc) · 1.03 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
<!DOCTYPE html>
<html>
<head>
<title>Animação 2</title>
<meta charset="UTF-8">
<link rel="icon" href="resources/HTML5.png"/>
<style>
body {
margin: 0px;
width: 100%;
height: 100%;
background-color: black;
}
#myCanvas {
margin: 0px;
position: fixed;
top: 0;
left: 0;
padding: 0;
}
#toolBar {
background-color: black;
position: fixed;
top: 0;
left: 0;
padding: 0px;
width: 100%;
height: 27px;
}
div * {
margin: 3px 0px 0px 20px;
}
.labeledInput {
margin-left: 5px;
}
</style>
</head>
<body>
<canvas id="myCanvas" width="1366" height="638">O teu browser não suporta a tag canvas do HTML5.</canvas>
<div id="toolBar">
<button id="backToIndex">Voltar</button>
<button id="reloadButton">Recarregar</button>
<select id="dropdownLanguage">
<option value="pt">Português</option>
<option value="en">English</option>
</select>
</div>
<script type="module" src="src/Animation2/entrypoint.ts"></script>
</body>
</html>