forked from PiSimo/PiCamNN
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
119 lines (107 loc) · 2.01 KB
/
index.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<html>
<meta charset="utf-8">
<meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' name='viewport' />
<title>PiCam</title>
<!--
###########################################################
# Modify this file as much as you want, but don't modify #
# the part from <!-- S --> to <!-- E --> else picam will#
# not work ! #
###########################################################
-->
<style>
body{
background-color: #673ab7;
font-family: 'Ubuntu','Monospace','Sanserif';
}
.pos{
width:100%;
height:100px;
}
a{
text-decoration: none;
color:#000;
}
.top{
width: 100%;
position: absolute;
margin-left: -10;
margin-right: -10;
margin-top: -10;
height:100;
background-color: #e51c23;
box-shadow: 5px 5px 10px #000;
color: #fff;
text-shadow: 4px 4px 3px #000;
font-size: 17px;
transition-duration: 1s;
}
.top:hover{
box-shadow: 4px 4px 50px #610B0B;
}
#corp{
margin-top: 25px;
/*width: 400px;
*/height: 400px;
margin-left: 20%;
}
#logs{
font-size: 21px;
font-weight: bold;
transition-duration: 1s;
text-shadow: 0px 3px 10px #000;
}
#logs:hover{
text-shadow: 0px 1px 10px #fff;
}
#title{
< color:#000;
text-shadow: 0px 3px 10px #000;
font-weight: bold;
font-size: 20px;
}
#f{
border-style: dashed;
width:110%;
margin-left:-20%;
color: #009688;
}
.file{
color:#000;
transition-duration: 1s;
margin-left: 25;
}
.file:hover{
text-shadow: 0px 1px 10px #fff;
transform: scale(1.5,1.5);
}
</style>
<body>
<div class="pos">
<div class="top">
<center><h1>PiCam</h1></center>
</div>
</div>
<div id="corp">
<a id="logs" href="logs">Detection Logs ></a>
<br /><br />
<hr id="f"/>
<p id="title">Video :</p>
<!-- S -->
<!-- E -->
</div>
<script>
a = document.getElementsByClassName("file");
for(var i = 0;i != a.length;i++){
x = a[i].innerHTML;
x = x.replace("__","_");
while(x.indexOf("_") != -1)
{
x = x.replace("_"," ");
}
x = "> "+x;
a[i].innerHTML = x;
}
</script>
</body>
</html>