Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/color_fish_tank.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
</head>
<body>
<div class="demo-title">
<p><a href="http://trackingjs.com" target="_parent">tracking.js</a> - use a magenta colored object to control the scene</p>
<p><a href="http://trackingjs.com" target="_parent">tracking.js</a> - use a magenta colored object to control the scene or <a href="color_magenta_screen.html" target="_parent">open get.al/magenta on mobile</a></p>
</div>

<video id="video" width="320" height="240" preload autoplay loop muted></video>
Expand Down
35 changes: 35 additions & 0 deletions examples/color_magenta_screen.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
<!doctype html>

<html>
<head>
<meta charset="utf-8">
<title>tracking.js - magenta screen</title>
<link rel="stylesheet" href="assets/demo.css">

<script src="../build/tracking-min.js"></script>
<script src="../../dat-gui/build/dat.gui.min.js"></script>

<style>
.demo-frame-mobile {
background-color: magenta;

width: 100%;
height: 100vh;
}



</style>
</head>
<body>
<div class="demo-title">
<p><a href="http://trackingjs.com" target="_parent">tracking.js</a> - magenta screen for demo - open on mobile</p>
</div>

<div class="demo-frame-mobile">

</div>


</body>
</html>