A Pen by Samuel Nittala on CodePen.
Last active
December 15, 2020 03:00
-
-
Save SamuelNittala/3f4fcd54ddffd88e09215e4622f23bc8 to your computer and use it in GitHub Desktop.
Starwars Trivia Clock.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="main"> | |
<h1 id="title"> Star Clock Trivia</h1> | |
<h1 id="clock"></h1> | |
<div class='info'> | |
<h2 id="trivia"><span id="name"></span><span id="eyes"></span></h2> | |
</div> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function update() { | |
var date = new Date(); | |
document.getElementById("clock").innerHTML = date.toLocaleTimeString(); | |
} | |
setInterval(update, 1000); | |
function trivia() { | |
let rand = Math.floor(Math.random() * 100 + 1); | |
axios | |
.get("https://swapi.dev/api/people/" + rand + "/") | |
.then(res => updateInfo(res.data)) | |
.catch(error => console.log(error)); | |
} | |
setInterval(trivia, 3000); | |
function updateInfo(data) { | |
let name = document.getElementById("name"); | |
let eyes = document.getElementById("eyes"); | |
let eye_color = data.eye_color; | |
let str = data.name + " has "; | |
eyes.style.color = eye_color; | |
eyes.innerHTML = eye_color + " eyes"; | |
name.innerHTML = str; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script src="https://cdnjs.cloudflare.com/ajax/libs/axios/0.19.0/axios.min.js"></script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@import url("https://fonts.googleapis.com/css?family=Russo+One&display=swap"); | |
body { | |
background-color: #f5425a; | |
} | |
.info { | |
padding: 10x; | |
margin-left: 80px; | |
margin-top: 50px; | |
color: white; | |
font-size: 25px; | |
font-family: "Russo One", sans-serif; | |
} | |
#title { | |
text-align: center; | |
margin-top: 100px; | |
font-size: 70px; | |
color: orange; | |
font-family: "Russo One", sans-serif; | |
} | |
#clock { | |
font-family: "Russo One", sans-serif; | |
text-align: center; | |
font-size: 50px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment