2020-09-21 20:44:29 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2022-05-05 11:40:27 +00:00
|
|
|
<link rel="shortcut icon" href="{{ url_for('static', filename='favicon.ico') }}">
|
2020-09-21 20:44:29 +00:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<style>
|
|
|
|
body {
|
|
|
|
margin: 0;
|
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
.navbar {
|
|
|
|
overflow: hidden;
|
|
|
|
position: fixed;
|
|
|
|
bottom: 0;
|
|
|
|
width: 100%;
|
|
|
|
margin: auto;
|
|
|
|
background-color: black;
|
|
|
|
opacity:0.6;
|
|
|
|
}
|
|
|
|
|
|
|
|
.navbar a {
|
|
|
|
float: left;
|
|
|
|
display: block;
|
|
|
|
color: #f2f2f2;
|
|
|
|
text-align: center;
|
|
|
|
padding: 14px 16px;
|
|
|
|
text-decoration: none;
|
2022-05-05 11:08:12 +00:00
|
|
|
font-size: 17px;
|
2020-09-21 20:44:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.navbar a:hover {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.navbar a.active {
|
|
|
|
background-color: #4CAF50;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
.main {
|
|
|
|
padding: 16px;
|
|
|
|
margin-bottom: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-05-05 11:08:12 +00:00
|
|
|
.camera-movement{
|
2020-09-21 20:44:29 +00:00
|
|
|
float: none;
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.lights-button{
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
i.fa {
|
|
|
|
display: inline-block;
|
|
|
|
border-radius: 60px;
|
|
|
|
box-shadow: 0px 0px 2px #888;
|
|
|
|
padding: 0.5em 0.6em;
|
2022-05-05 11:08:12 +00:00
|
|
|
|
2020-09-21 20:44:29 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
img {
|
|
|
|
display: block;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
width: 35%
|
|
|
|
}
|
|
|
|
|
|
|
|
button {
|
|
|
|
background-color: Transparent;
|
|
|
|
background-repeat:no-repeat;
|
|
|
|
border: none;
|
|
|
|
cursor:pointer;
|
|
|
|
overflow: hidden;
|
|
|
|
outline:none;
|
|
|
|
}
|
2022-05-05 11:08:12 +00:00
|
|
|
|
2020-09-21 20:44:29 +00:00
|
|
|
//CSS
|
|
|
|
.camera-bg {
|
2022-05-05 11:08:12 +00:00
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
2020-09-21 20:44:29 +00:00
|
|
|
|
|
|
|
/* Preserve aspet ratio */
|
|
|
|
min-width: 100%;
|
|
|
|
min-height: 100%;
|
|
|
|
|
|
|
|
/* Full height */
|
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
|
|
|
|
/* Center and scale the image nicely */
|
|
|
|
background-position: center;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-size: cover;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-right-logo {
|
|
|
|
position: absolute;
|
|
|
|
top: 3%;
|
|
|
|
left: 2%;
|
|
|
|
font-size: 38px;
|
|
|
|
color: white;
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
width: 100vw;
|
|
|
|
height: 100vh;
|
|
|
|
overflow: hidden;
|
|
|
|
background-color: black;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<title>Make - PiStream</title>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
|
|
|
|
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<div class="main" id="newpost">
|
|
|
|
<img class="camera-bg" style="width: 100%; height:80%; background-attachment: fixed;" id="bg" class="center" src="{{ url_for('video_feed') }}">
|
|
|
|
<!--<img class="camera-bg" style="width: 100%; height:80%; background-attachment: fixed;" id="bg" class="center" src="https://www.psdbox.com/wp-content/uploads/2011/01/security-camera-photoshop-effect.jpg">-->
|
2022-05-05 11:08:12 +00:00
|
|
|
|
2020-09-21 20:44:29 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="top-right-logo">
|
2022-05-05 11:40:27 +00:00
|
|
|
<a></a>Raspberry Pi - Camera Stream</a>
|
2020-09-21 20:44:29 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="navbar">
|
|
|
|
|
|
|
|
<div class="ignoreCall">
|
|
|
|
<a id=decline class="but_def">
|
2022-05-05 11:08:12 +00:00
|
|
|
<button id="button">
|
2020-09-21 20:44:29 +00:00
|
|
|
<i style="background: red; color: white;" class="fa fa-times fa-2x" aria-hidden="true"></i>
|
|
|
|
</button>
|
2022-05-05 11:08:12 +00:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="picture">
|
|
|
|
<a href=# id=take-picture class="picture_class">
|
|
|
|
<button id="take-picture-button" onclick="take_picture()">
|
|
|
|
<i style="background: blue; color: white;" class="fa fa-camera fa-2x" aria-hidden="true"></i>
|
|
|
|
</button>
|
|
|
|
</a>
|
2020-09-21 20:44:29 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
2022-05-05 11:08:12 +00:00
|
|
|
|
2020-09-21 20:44:29 +00:00
|
|
|
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
2022-05-05 11:08:12 +00:00
|
|
|
|
|
|
|
// stop stream - called when pressing red X
|
2020-09-21 20:44:29 +00:00
|
|
|
var button = document.getElementById('button');
|
|
|
|
|
|
|
|
button.onclick = function() {
|
|
|
|
var div = document.getElementById('newpost');
|
|
|
|
if (div.style.display !== 'none') {
|
|
|
|
div.style.display = 'none';
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
div.style.display = 'block';
|
|
|
|
}
|
|
|
|
};
|
2022-05-05 11:08:12 +00:00
|
|
|
|
|
|
|
// Take and save a photo, call picture function in main.py
|
|
|
|
$(function() {
|
|
|
|
$('a#take-picture').on('click', function(e) {
|
|
|
|
e.preventDefault()
|
|
|
|
$.getJSON('/picture',
|
|
|
|
function(data) {
|
|
|
|
//do nothing
|
|
|
|
});
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
// take picture
|
|
|
|
var button = document.getElementById('take-pica-button');
|
|
|
|
|
|
|
|
button.onclick = function() {
|
|
|
|
var div = document.getElementById('newpost');
|
|
|
|
if (div.style.display !== 'none') {
|
|
|
|
div.style.display = 'none';
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
div.style.display = 'block';
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-09-21 20:44:29 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|