Skip to content

Commit

Permalink
fixed merge conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
l-white committed Oct 2, 2023
2 parents 2d0ae98 + 63facdd commit f5906ce
Show file tree
Hide file tree
Showing 4 changed files with 46 additions and 0 deletions.
Binary file added Art/Joy/olga_min/animation.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/Joy/olga_min/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" />
<link rel="stylesheet" href="style.css" />
<title>Simple Animation</title>
</head>
<body>
<div class="animated-box"></div>
</body>
</html>
27 changes: 27 additions & 0 deletions Art/Joy/olga_min/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
body {
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
overflow: hidden;
}

.animated-box {
width: 100px;
height: 100px;
background-color: #3498db;
position: absolute;
left: -110px;
animation: moveBox 2s linear forwards;
}

@keyframes moveBox {
0% {
left: -110px;
}
100% {
left: 100vw;
}
}
7 changes: 7 additions & 0 deletions include.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,13 @@ let cards = [
imageLink: './Art/alexsatalan/shaking.gif',
author: 'AlexS',
githubLink: 'https://github.com/alexsatalan'
},
{
artName: 'olga_min',
pageLink: './Art/olga_min/index.html',
imageLink: './Art/olga_min/animation.gif',
author: 'Olga',
githubLink: 'https://github.com/OlgaMinaievaWebDev'
}
];

Expand Down

0 comments on commit f5906ce

Please sign in to comment.