-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfe4.html
More file actions
48 lines (42 loc) · 1.78 KB
/
fe4.html
File metadata and controls
48 lines (42 loc) · 1.78 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Θερμόμετρο</title>
<link rel="stylesheet" href="css/fe4.css">
<link rel="shortcut icon" href="img/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css"
integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
</head>
<body>
<header>
<p>Μετατροπές φάσεων</p>
<p> © Περί ΦυσιQuiz </p>
</header>
<main>
<div>
<p>
<i id="play-pause-button" class="fa fa-play myCanvas-button" onclick="playPause();"
title="Έναρξη Μέτρησης Χρόνου"></i>
<i id="reset-button" class="fa fa-redo myCanvas-button" onclick="reset();" title="Επανέναρξη πειράματος"></i>
<label for="timeInput" class="myCanvas-button">
<input type="checkbox" id="timeInput" onclick="timeCheck()" checked>
<i class="fa fa-clock" title="Εμφάνιση Χρόνου"></i>
</label>
<label for="temperatureInput" class="myCanvas-button">
<input type="checkbox" id="temperatureInput" onclick="temperatureCheck()" checked>
<i class="fa fa-thermometer-half" title="Εμφάνιση Θερμοκρασίας"></i>
</label>
<label for="fastInput" class="myCanvas-button">
<input type="checkbox" id="fastInput" onclick="fastCheck()" checked>
<i class="fa fa-fast-forward" title="Γρήγορη Κίνηση"></i>
</label>
</p>
<div>
<canvas style="border: 1px solid gray;"></canvas>
</div>
</main>
<script src="js/fe4.js"></script>
</body>
</html>