Skip to content
This repository has been archived by the owner on Sep 6, 2023. It is now read-only.

Commit

Permalink
Merge pull request #450 from zero-to-mastery/Fogudo-test
Browse files Browse the repository at this point in the history
Fogudo test
  • Loading branch information
l-white committed Aug 9, 2023
2 parents 2cd47f4 + 225df58 commit 8ca4665
Show file tree
Hide file tree
Showing 4 changed files with 56 additions and 0 deletions.
23 changes: 23 additions & 0 deletions Art/Fogudo/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="styles.css" />
<title>Speed Bars</title>
</head>

<body>
<div>
<div id="myDIV1">
<h2>Fast</h2>
</div>
<div id="myDIV2">
<h2>Faster</h2>
</div>
<div id="myDIV3">
<h2>Fastest</h2>
</div>
</div>
</body>
</html>
Binary file added Art/Fogudo/speedbars.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
26 changes: 26 additions & 0 deletions Art/Fogudo/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
#myDIV1 {
height: 100px;
width: 50px;
background-color: coral;
color: white;
animation: mymove 1.5s infinite;
}
#myDIV2 {
height: 100px;
width: 50px;
background-color: red;
color: white;
animation: mymove 1s infinite;
}
#myDIV3 {
height: 100px;
width: 50px;
background-color: blue;
color: rgb(250, 247, 247);
animation: mymove 0.5s infinite;
}
@keyframes mymove {
50% {
width: 100%;
}
}
7 changes: 7 additions & 0 deletions include.js
Original file line number Diff line number Diff line change
Expand Up @@ -3476,6 +3476,13 @@ let cards = [
author: 'Anrich',
githubLink: 'https://github.com/AnrichV'
},
{
artName: 'Speed Bars',
pageLink: './Art/Fogudo/index.html',
imageLink: './Art/Fogudo/speedbars.gif',
author: 'Frederick Ogudo',
githubLink: 'https://github.com/Fogudo'
},
{
artName: 'webdesign4ever-animation',
pageLink: './Art/webdesign4ever/index.html',
Expand Down

0 comments on commit 8ca4665

Please sign in to comment.