Skip to content

Commit

Permalink
Merge pull request #1731 from ibaaddurrani/Ibaad
Browse files Browse the repository at this point in the history
adding my animation to the project
  • Loading branch information
MattCSmith committed Oct 2, 2023
2 parents 7a0d1d3 + 22484e8 commit 7cf5409
Show file tree
Hide file tree
Showing 4 changed files with 46 additions and 0 deletions.
25 changes: 25 additions & 0 deletions Art/Ibaad/animate.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
body {
text-align: center;
background-color: plum;
}

img {
width: 500px;
height: 350px;
justify-content: center;
box-shadow: 10px 10px 5px black;
transition: all 1s
}

img:hover {
transform: scale(1.2);
}
@keyframes slidein {
from {
transform: scaleX(1);
}
to {
transform: scaleX(2);
}
}

14 changes: 14 additions & 0 deletions Art/Ibaad/animate.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<!DOCTYPE html>
<html>
<head>
<title>Document</title>
<link rel="stylesheet" type="text/css" href="animate.css">
</head>
<body>
<h1>Here is my simple animation!</h1>
<br>
<br>
<img src="https://st3.depositphotos.com/1005844/31850/i/450/depositphotos_318505800-stock-photo-neon-lights-smoke-background.jpg"
alt ="Cool Image">
</body>
</html>
Binary file added Art/Ibaad/animationimagehover.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions include.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ let cards = [
author: 'Joy',
githubLink: 'https://github.com/royranger'
}
{
artName: 'AnimateIbaad',
pageLink: './Art/Ibaad/animate.html',
imageLink: './Art/Ibaad/animationimagehover.gif',
author: 'Ibaad',
githubLink: 'https://github.com/ibaaddurrani'
}
];

// +--------------------------------------------------------------------------------+
Expand Down

0 comments on commit 7cf5409

Please sign in to comment.