81 lines
3.8 KiB
HTML
81 lines
3.8 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Cube by Evil Genius Labs</title>
|
|
|
|
<!-- request CSS from internet CDN -->
|
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
|
|
|
|
<!-- request CSS from the ESP8266 web server -->
|
|
<!-- <link rel="stylesheet" href="css/bootstrap.min.css"> -->
|
|
|
|
<link rel="stylesheet" href="css/simple.css">
|
|
|
|
<link rel="icon" href="images/atom196.png">
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="container" class="container-fluid">
|
|
|
|
<div style="margin: 5px;">
|
|
<button type="button" class="btn btn-default" id="btnOn">On</button>
|
|
<button type="button" class="btn btn-default" id="btnOff">Off</button>
|
|
</div>
|
|
|
|
<h4>Patterns</h4>
|
|
|
|
<div id="patternGrid" class="grid-pattern"></div>
|
|
|
|
<h4>Basic Colors</h4>
|
|
|
|
<div class="grid-color-buttons">
|
|
<button type="button" class="grid-item-color-button" style="background: #FF0000;" title="Red"> </button>
|
|
<button type="button" class="grid-item-color-button" style="background: #FF8000;" title="Orange"> </button>
|
|
<button type="button" class="grid-item-color-button" style="background: #FFFF00;" title="Yellow"> </button>
|
|
<button type="button" class="grid-item-color-button" style="background: #80FF00;" title="Chartreuse"> </button>
|
|
<button type="button" class="grid-item-color-button" style="background: #00FF00;" title="Green"> </button>
|
|
<button type="button" class="grid-item-color-button" style="background: #00FF80;" title="Spring Green"> </button>
|
|
<button type="button" class="grid-item-color-button" style="background: #00FFFF;" title="Cyan"> </button>
|
|
<button type="button" class="grid-item-color-button" style="background: #0080FF;" title="Azure"> </button>
|
|
<button type="button" class="grid-item-color-button" style="background: #0000FF;" title="Blue"> </button>
|
|
<button type="button" class="grid-item-color-button" style="background: #8000FF;" title="Violet"> </button>
|
|
<button type="button" class="grid-item-color-button" style="background: #FF00FF;" title="Magenta"> </button>
|
|
<button type="button" class="grid-item-color-button" style="background: #FF0080;" title="Rose"> </button>
|
|
<button type="button" class="grid-item-color-button" style="background: #FFFFFF; border: 1px solid;" title="White"> </button>
|
|
</div>
|
|
|
|
<h4>Color Palette</h4>
|
|
|
|
<div id="colorButtonsRow" class="grid-color"></div>
|
|
|
|
</div>
|
|
|
|
<div id="templates" style="display: none">
|
|
|
|
<button id="colorButtonTemplate" class="grid-item-color"></button>
|
|
|
|
<button id="patternButtonTemplate" class="grid-item-pattern btn btn-default"></button>
|
|
|
|
</div>
|
|
|
|
<!-- request js from internet CDN -->
|
|
<script src="https://code.jquery.com/jquery-3.1.1.min.js" integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8=" crossorigin="anonymous"></script>
|
|
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
|
|
<script src="https://unpkg.com/isotope-layout@3/dist/isotope.pkgd.min.js"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/reconnecting-websocket/1.0.0/reconnecting-websocket.min.js" integrity="sha256-A4JwlcDvqO4JXpvEtvWY1RH8JAEMu5W21wP8GUXLUNs=" crossorigin="anonymous"></script>
|
|
|
|
<!-- request js from the ESP8266 web server -->
|
|
<!-- <script src="js/jquery-3.1.1.min.js"></script> -->
|
|
<!-- <script src="js/bootstrap.min.js"></script> -->
|
|
|
|
<script src="js/simple.js"></script>
|
|
|
|
</body>
|
|
|
|
</html>
|