mirror of
https://github.com/overte-org/overte.git
synced 2025-08-04 01:03:38 +02:00
53 lines
1.8 KiB
HTML
53 lines
1.8 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>
|
|
<script>
|
|
window.twttr = (function (d, s, id) {
|
|
var js, fjs = d.getElementsByTagName(s)[0],
|
|
t = window.twttr || {};
|
|
if (d.getElementById(id)) return t;
|
|
js = d.createElement(s);
|
|
js.id = id;
|
|
js.src = "https://platform.twitter.com/widgets.js";
|
|
fjs.parentNode.insertBefore(js, fjs);
|
|
|
|
t._e = [];
|
|
t.ready = function (f) {
|
|
t._e.push(f);
|
|
};
|
|
|
|
return t;
|
|
}(document, "script", "twitter-wjs"));
|
|
</script>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="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" />
|
|
<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>
|