|
|
@@ -0,0 +1,42 @@
|
|
|
+<!DOCTYPE html>
|
|
|
+<html lang="se">
|
|
|
+<head>
|
|
|
+ <meta charset="UTF-8">
|
|
|
+ <title>RGB Hub</title>
|
|
|
+ <link rel="stylesheet" type="text/css" href="css/LEDs.css">
|
|
|
+ <link rel="stylesheet" type="text/css" href="css/sideBar.css">
|
|
|
+
|
|
|
+ <script src="js/LED.js"></script>
|
|
|
+
|
|
|
+ <link rel="preconnect" href="https://fonts.googleapis.com">
|
|
|
+ <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
|
+ <link href="https://fonts.googleapis.com/css2?family=Raleway&display=swap" rel="stylesheet">
|
|
|
+ <link href="https://fonts.googleapis.com/css2?family=Raleway&family=Roboto&display=swap" rel="stylesheet">
|
|
|
+</head>
|
|
|
+<body>
|
|
|
+ <div class="container">
|
|
|
+ <div class="corner"><p>Cool Site</p></div>
|
|
|
+ <div class="sideBar">
|
|
|
+ <a href="index.html">LED</a>
|
|
|
+ <a>Git</a>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="topBar">
|
|
|
+ <button>Animations</button>
|
|
|
+ <button>Settings</button>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="animationsContainer">
|
|
|
+ <h2>Animations</h2>
|
|
|
+
|
|
|
+ <button id="B" onclick="buttonPushAnimation('B')">Rainbow</button>
|
|
|
+ <button id="C" onclick="buttonPushAnimation('C')">Fill</button>
|
|
|
+ <button id="D" onclick="buttonPushAnimation('D')">Chasing</button>
|
|
|
+ <button id="E" onclick="buttonPushAnimation('E')">Random colors</button>
|
|
|
+ <button id="F" onclick="buttonPushAnimation('F')">Split RGB</button>
|
|
|
+ <button id="G" onclick="buttonPushAnimation('G')">Stardust</button>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ </div>
|
|
|
+</body>
|
|
|
+</html>
|