You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
72 lines
1.9 KiB
72 lines
1.9 KiB
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title><%= title %></title>
|
|
<!-- Latest compiled and minified CSS -->
|
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
|
|
<link rel="stylesheet" href="/css/cover.css"/>
|
|
</head>
|
|
<body>
|
|
|
|
<body>
|
|
|
|
<div class="site-wrapper">
|
|
<div class="site-wrapper-inner">
|
|
<div class="cover-container">
|
|
<div class="masthead clearfix">
|
|
<div class="inner">
|
|
<h3 class="masthead-brand">Bobinoscope</h3>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="inner cover">
|
|
<h1 class="cover-heading">Prends ta face !</h1>
|
|
<p class="lead">
|
|
<a href="#" class="btn btn-lg btn-default" id="idBtnClick">Clic</a>
|
|
</p>
|
|
<img id="idDisplayImg" width="640px"/>
|
|
</div>
|
|
|
|
<div class="mastfoot">
|
|
<div class="inner">
|
|
<p>BW Bros.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
<!-- Latest compiled and minified JQuery -->
|
|
<script src="//code.jquery.com/jquery-1.11.2.min.js"></script>
|
|
<!-- Latest compiled and minified javaScript bootstrap-->
|
|
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
|
|
</html>
|
|
|
|
<script type="text/javascript">
|
|
$(document).ready(function() {
|
|
$('#idBtnClick').click(function() {
|
|
BOB_takeThe4Pictures();
|
|
})
|
|
})
|
|
|
|
function BOB_takeThe4Pictures() {
|
|
var currentDate = new Date();
|
|
var pictId = 0;
|
|
var boothId = currentDate.getTime();
|
|
|
|
|
|
|
|
}
|
|
|
|
function BOB_takeOnePicture(pBoothId, pPictId) {
|
|
$.get('/dslr/takepicture', function(pResponse) {
|
|
$('#idDisplayImg').attr('src', pResponse.data);
|
|
})
|
|
}
|
|
|
|
|
|
</script>
|