-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path3dgum.html
51 lines (50 loc) · 2.1 KB
/
3dgum.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
<!-- License: This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or (at your
option) any later version. This program is distributed in the hope that it
will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty
of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
Public License for more details. -->
<html>
<head>
<title>3-D Video Cam</title>
<link rel="stylesheet" href="css/3dgum.css">
</head>
<body>
<div id="sidebar">
<p class="settings">Select the color of the lenses in your 3D glass</p>
<div class="switch-container">
<p>RED & </p>
<div id="color-switch" class="switch lens-color" data-on-label="CYAN" data-off-label="BLUE"/>
<input type="checkbox" checked="" data-toggle="switch" />
</div>
</div>
<p class="settings">Select the type of 3D effect</p>
<div class="switch-container">
<p>POP </p>
<div id="effect-switch" class="switch effect-type" data-on-label="IN" data-off-label="OUT"/>
<input type="checkbox" checked="" data-toggle="switch" />
</div>
</div>
<p class="settings">Change the offset to get varying depths</P>
<div id="offset"></div>
</div>
<div id="content">
<p>Adjust the parameters on the left pane for better viewing experience. It is best viewed in fullscreen mode. Go full screen by clicking the button below</P>
<video id="video" autoplay>Your browser does not support HTML5 video.</video>
<canvas id="canvas"></canvas>
<div class="canvas-wrapper">
<canvas id="output"></canvas>
</div>
<div class="fullscreen-button">
<a class="btn btn-large btn-block btn-inverse">Go Full Screen!</a>
</div>
</div>
<!-- Load JS here for greater good =============================-->
<script src="js/jquery-1.8.3.min.js"></script>
<script src="js/jquery-ui-1.10.3.custom.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/bootstrap-switch.js"></script>
<script src="js/3dgum.js"></script>
</body>
</html>