Skip to content

Commit

Permalink
Animation added to art directory (#2287)
Browse files Browse the repository at this point in the history
Co-authored-by: Laureline Paris <32878345+LaurelineP@users.noreply.github.com>
  • Loading branch information
Aryan741x and LaurelineP committed Oct 23, 2023
1 parent e76a940 commit 0a21038
Show file tree
Hide file tree
Showing 4 changed files with 107 additions and 0 deletions.
Binary file added Art/Aryan741x/animation-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 16 additions & 0 deletions Art/Aryan741x/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DAY 2 Challenge</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="menu no-animation">
<div></div>
<div></div>
<div></div>
</div>
</body>
</html>
84 changes: 84 additions & 0 deletions Art/Aryan741x/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
*{
margin:0;
padding:0;
box-sizing: border-box;
background-color: #3faf82
}
body{
min-height:100vh;
display:flex;
justify-content: center;
align-items: center;
}
.menu{
position: relative;
display: flex;
flex-direction:column;
row-gap:16px;
cursor: pointer;
}
.menu div{
width:100px;
height:10px;
background-color: white;
box-shadow:0 4px 20px #00000030;
border-radius: 2px;
transition:all 0.3s;
}
.menu.active div:nth-child(2){
transform:scale(0);
opacity:0;
}
.menu.active div:nth-child(1){
animation:bar1Anim 0.3s ease-in-out forwards;
}
@keyframes bar1Anim{
50%{
transform:translateY(24px);
}
100%{
transform:translateY(24px) rotateZ(45deg);
}
}
.menu.active div:nth-child(3){
animation:bar2Anim 0.3s ease-in-out forwards;
}
@keyframes bar2Anim{
50%{
transform:translateY(-24px);
}
100%{
transform:translateY(-24px) rotateZ(135deg);
}
}
.menu div:nth-child(1){
animation: bar1revAnim 0.3s ease-in-out;
}
@keyframes bar1revAnim{
0%{
transform:translateY(24px) rotateZ(45deg);
}
50%{
transform:translateY(24px) rotateZ(0deg);
}
100%{
transform: translateY(0px);
}
}
.menu div:nth-child(3){
animation: bar3revAnim 0.3s ease-in-out;
}
@keyframes bar3revAnim{
0%{
transform:translateY(-24px) rotateZ(135deg);
}
50%{
transform:translateY(-24px) rotateZ(0deg);
}
100%{
transform: translateY(0px);
}
}
.menu.no-animation div{
animation: none;
}
7 changes: 7 additions & 0 deletions include.js
Original file line number Diff line number Diff line change
Expand Up @@ -2229,6 +2229,13 @@ let cards = [
githubLink: 'https://github.com/vkumar786'
},
{
artName: 'Menu Bar',
pageLink: './Art/Aryan741x/index.html',
imageLink: './Art/Aryan741x/animation-1.png',
author: 'Aryan741x',
githubLink: 'https://github.com/Aryan741x'
},
{
artName: 'Rotating Box',
pageLink: './Art/Dhairya-Mehra/animation.html',
imageLink: './Art/Dhairya-Mehra/animation.gif',
Expand Down

0 comments on commit 0a21038

Please sign in to comment.