mirror of
https://github.com/overte-org/overte.git
synced 2025-08-04 20:57:09 +02:00
36 lines
1.3 KiB
HTML
36 lines
1.3 KiB
HTML
<html>
|
|
<head>
|
|
<title>Share</title>
|
|
<link rel="stylesheet" type="text/css" href="css/hifi-style.css">
|
|
<link rel="stylesheet" type="text/css" href="css/SnapshotReview.css">
|
|
<script type="text/javascript" src="js/eventBridgeLoader.js"></script>
|
|
<script type="text/javascript" src="js/SnapshotReview.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="snapsection title">
|
|
<label>Snap</label>
|
|
|
|
<label id="settingsLabel" for="snapshotSettings">Settings</label>
|
|
<input type="button" class="hifi-glyph naked" id="snapshotSettings" value="@" onclick="snapshotSettings()" />
|
|
</div>
|
|
<hr />
|
|
<div id="snapshot-pane">
|
|
<div id="snapshot-images">
|
|
</div>
|
|
</div>
|
|
<div id="snapshot-controls">
|
|
<div id="snap-settings">
|
|
<label>CAMERA CAPTURES</label><br />
|
|
<form action="">
|
|
<input type="radio" name="cameraCaptures" id="stillAndGif" value="stillAndGif" checked="checked" />
|
|
<label for="stillAndGif">Still + GIF</label><br />
|
|
<input type="radio" name="cameraCaptures" id="stillOnly" value="stillOnly" />
|
|
<label for="stillOnly">Still Only</label>
|
|
</form>
|
|
</div>
|
|
<div id="snap-button" onclick="takeSnapshot()">
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|