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

Commit

Permalink
resolved merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
l-white committed Aug 9, 2023
2 parents 9fa3c99 + 871d362 commit a349913
Show file tree
Hide file tree
Showing 4 changed files with 90 additions and 0 deletions.
Binary file added Art/erickelninoSwift/erickBallCricus.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 13 additions & 0 deletions Art/erickelninoSwift/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Eriik Animation</title>
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<h1>Erick Elnino Tshimbombo</h1>
<div class="box"></div>
</body>
</html>
56 changes: 56 additions & 0 deletions Art/erickelninoSwift/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}

body {
background-color: black;
}
h1 {
color: white;
}

.box {
height: 100px;
width: 100px;
background-color: orangered;
position: relative;
animation-name: anim;
animation-duration: 8s;
animation-iteration-count: infinite;
border-radius: 50px;
border-style: outset;
border-color: black;
}

@keyframes anim {
0% {
top: 0;
left: 0;
background-color: orangered;
}

25% {
top: 0;
left: 500px;
background-color: green;
}
50% {
top: 500px;
left: 500px;
background-color: purple;
}

75% {
top: 500px;

left: 0;
background-color: yellow;
}
100% {
top: 0;
right: 0;
background-color: rgb(31, 182, 220);
}
}
21 changes: 21 additions & 0 deletions include.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,20 @@ let cards = [
author: 'Mike',
githubLink: 'https://github.com/Mednalig'
},
{
artName: 'Dragon Balls Radar',
pageLink: './Art/nekimuntu/index.html',
imageLink: './Art/nekimuntu/RadarDragonBalls.gif',
author: 'Carolyn Nagau aka Nekimuntu',
githubLink: 'https://github.com/nekimuntu'
},
{
artName: 'Dragon Balls Radar',
pageLink: './Art/nekimuntu/index.html',
imageLink: './Art/nekimuntu/RadarDragonBalls.gif',
author: 'Carolyn Nagau aka Nekimuntu',
githubLink: 'https://github.com/nekimuntu'
},
{
artName: 'Spooky',
pageLink: './Art/spooky/index.html',
Expand Down Expand Up @@ -9395,6 +9409,13 @@ let cards = [
imageLink: './Art/rainbow-circle/traunce.gif',
author: 'Chandni',
githubLink: 'https://github.com/Chandni-1399'
},
{
artName: 'erickelninoSwift',
pageLink: './Art/erickelninoSwift/index.html',
imageLink: './Art/erickelninoSwift/erickBallCricus.gif',
author: 'Erick El nino Tshimbombo',
githubLink: 'https://github.com/erickelninoSwift'
}
];

Expand Down

0 comments on commit a349913

Please sign in to comment.