This repository has been archived on 2022-10-26. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
poi-animations/001-simple-head-tracking-animation/index.html
2019-03-24 00:56:17 +01:00

38 lines
1.1 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Head Tracking Animation - POI Animations</title>
<link href="css/style.css" rel="stylesheet">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/bootstrap-theme.min.css" rel="stylesheet">
<script defer src="js/bootstrap.min.js"></script>
<script defer src="js/d3.min.js"></script>
<script defer src="js/tracking-min.js"></script>
<script defer src="js/face-min.js"></script>
<script defer src="js/script.js"></script>
</head>
<body>
<div class="container">
<div class="row">
<h1 class="text-center">POI Simple Head Tracking Animation</h1>
<p class="text-center">The Machine is always watching.</p>
</div>
<div class="row">
<div class="frame">
<div class="video-container well">
<video autoplay height="240" id="video" loop muted preload width="320"></video>
<canvas height="240" id="canvas" width="320"></canvas>
</div>
</div>
</div>
<div class="row">
<div class="footer">
<p class="text-center">
Developed by A. Besir Kurtulmus @ 2015
</p>
</div>
</div>
</div>
</body>
</html>