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

Commit

Permalink
adding my art to the project
Browse files Browse the repository at this point in the history
  • Loading branch information
Bravo773 committed Aug 30, 2023
1 parent e8f2db3 commit e73d652
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 0 deletions.
Binary file added Art/Bravo/flame.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions Art/Bravo/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fire Animation</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="fire"></div>
</body>
</html>
22 changes: 22 additions & 0 deletions Art/Bravo/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
@keyframes flicker {
0%, 100% {
opacity: 1;
transform: scale(1);
}
25% {
opacity: 0.6;
transform: scale(0.95) translateY(-5px);
}
75% {
opacity: 0.8;
transform: scale(1.05) translateY(5px);
}
}

.fire {
width: 800px;
height: 500px;
background-image: url('flame.gif'); /* Replace with your fire image URL */
background-size: cover;
animation: flicker 1s infinite alternate;
}
7 changes: 7 additions & 0 deletions include.js
Original file line number Diff line number Diff line change
Expand Up @@ -9466,6 +9466,13 @@ let cards = [
imageLink: './Art/datagekko/css-animation.gif',
author: 'Datagekko',
githubLink: 'https://github.com/datagekko'
},
{
artName: 'Bravo',
pageLink: './Art/Bravo/index.html',
imageLink: './Art/Bravo/flame.gif',
author: 'Cristian Bravo',
githubLink: 'https://github.com/Bravo773'
}
];

Expand Down

0 comments on commit e73d652

Please sign in to comment.