add animation to quote display
This commit is contained in:
parent
6a46a20623
commit
636927c072
3
app.js
3
app.js
@ -2,7 +2,7 @@
|
||||
const todayDate = new Date();
|
||||
jsyear.innerText = todayDate.getFullYear();
|
||||
|
||||
const disp = document.querySelector(".display");
|
||||
const disp = document.querySelector(".quote");
|
||||
|
||||
fetch("FavouriteQuotes.json")
|
||||
.then((response) => {
|
||||
@ -11,5 +11,6 @@ fetch("FavouriteQuotes.json")
|
||||
.then((data) => {
|
||||
numQuotes = Object.entries(data).length;
|
||||
num = Math.floor(Math.random() * numQuotes);
|
||||
disp.classList.add("anim");
|
||||
disp.innerText = data[num].quote + "\n\n" + data[num].author.replace(/"/g, '');
|
||||
})
|
@ -3,15 +3,16 @@
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport"
|
||||
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0" />
|
||||
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0" />
|
||||
<title>read quote</title>
|
||||
<link rel="stylesheet" href="style.css">
|
||||
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="display"></div>
|
||||
<div class="display">
|
||||
<div class="quote"></div>
|
||||
</div>
|
||||
<footer class="footer">
|
||||
©<span id="jsyear"></span> Camille Frantz (<a href="https://github.com/fyrfli" target="_blank">@fyrfli</a>).
|
||||
</footer>
|
||||
|
10
style.css
10
style.css
@ -24,11 +24,11 @@
|
||||
}
|
||||
|
||||
.anim {
|
||||
animation: fadeIn linear 4s;
|
||||
-webkit-animation: fadeIn linear 4s;
|
||||
-moz-animation: fadeIn linear 4s;
|
||||
-o-animation: fadeIn linear 4s;
|
||||
-ms-animation: fadeIn linear 4s
|
||||
animation: fadeIn linear 2s;
|
||||
-webkit-animation: fadeIn linear 2s;
|
||||
-moz-animation: fadeIn linear 2s;
|
||||
-o-animation: fadeIn linear 2s;
|
||||
-ms-animation: fadeIn linear 2s
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user