-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstopwatch.html
62 lines (57 loc) · 2.24 KB
/
stopwatch.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
53
54
55
56
57
58
59
60
61
62
<!-- saved from url=(0032)http://127.0.0.1:5555/index.html -->
<html lang="en"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>stopwatch</title>
<script src="./stopwatch_files/index.js.download"></script>
<link rel="stylesheet" href="./stopwatch_files/style.css">
<!-- Code injected by Five-server -->
<script async="" data-id="five-server" data-file="d:\web development\index.html" type="application/javascript" src="./stopwatch_files/fiveserver.js.download"></script>
<style>
/* Injected by five-server */
/*[data-highlight="true"] {
border: 1px rgb(90,170,255) solid !important;
background-color: rgba(155,215,255,0.5);
animation: fadeOutHighlight 1s forwards 0.5s;
}
img[data-highlight="true"] {
filter: sepia(100%) hue-rotate(180deg) saturate(200%);
animation: fadeOutHighlightIMG 0.5s forwards 0.5s;
}*/
@keyframes fadeOutHighlight {
from {background-color: rgba(155,215,255,0.5);}
to {background-color: rgba(155,215,255,0);}
}
@keyframes fadeOutHighlightIMG {
0% {filter: sepia(100%) hue-rotate(180deg) saturate(200%);}
33% {filter: sepia(66%) hue-rotate(180deg) saturate(100%);}
50% {filter: sepia(50%) hue-rotate(90deg) saturate(50%);}
66% {filter: sepia(33%) hue-rotate(0deg) saturate(100%);}
100% {filter: sepia(0%) hue-rotate(0deg) saturate(100%);}
}
@keyframes fiveserverInfoPopup {
0% {top:-40px;}
15% {top:4px;}
85% {top:4px;}
100% {top:-40px;}
}
/*smaller*/
@media (max-width: 640px) {
#fiveserver-info-wrapper {
max-width: 98%;
}
#fiveserver-info {
border-radius: 0px;
}
}
</style></head>
<body>
<div id="clock">
<h1 id="timer">00:00</h1>
<div>
<button class="btn" id="start-btn">start</button>
<button class="btn" id="reset-btn">reset</button>
</div>
</div>
<script src="./stopwatch_files/index.js.download"></script>
</body></html>