Skip to content

Commit

Permalink
adding my art to the project (#2431)
Browse files Browse the repository at this point in the history
* adding my art to the project
  • Loading branch information
Kalliran committed Jan 30, 2024
1 parent f5878f1 commit ead6676
Show file tree
Hide file tree
Showing 4 changed files with 85 additions and 0 deletions.
Binary file added Art/Kalliran/Animation-Nation.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions Art/Kalliran/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<!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>Animation</title>
</head>
<body>
<h1></h1>
<p class="secondBox"></p>
<p class="thirdBox"></p>
</body>
</html>
65 changes: 65 additions & 0 deletions Art/Kalliran/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
@keyframes circleDance{
0% {background-color: red; left:0px; top:0px;}
10% {background-color: green; left:800px; top:0px;}
20% {background-color: yellow; left:800px; top:200px;}
30% {background-color: blue; left: 0px; top:200px;}
40% {background-color: violet; left:0px; top:0px;}
50% {background-color: purple; left:0px; top:0px;}
60% {background-color: rgb(22, 0, 22); left:800px; top:0px;}
70% {background-color: rgb(1, 1, 114); left:800px; top:200px;}
80% {background-color: orange; left: 0px; top:200px;}
90% {background-color: rgb(255, 102, 0); left:0px; top:0px;}
100% {background-color: rgb(233, 0, 70);}
}

/* @keyframes example {
0% {background-color:red; left:0px; top:0px;}
25% {background-color:yellow; left:200px; top:0px;}
50% {background-color:blue; left:200px; top:0px;}
75% {background-color:green; left:0px; top:200px;}
100% {background-color:red; left:0px; top:0px;}
} */

body{
background-color: rgb(55, 55, 55);
}

h1 {
width: 500px;
height: 100px;
position:relative;
background-color: red;
animation-name: circleDance;
animation-duration: 8s;
animation-iteration-count: infinite;
animation-direction: alternate-reverse;
animation-timing-function: ease-in-out;
animation-fill-mode: both;
}

.secondBox{
width: 500px;
height: 100px;
position: relative;
background-color: red;
animation-name: circleDance;
animation-duration: 6s;
animation-iteration-count: infinite;
animation-direction: alternate-reverse;
animation-timing-function: ease-in-out;
animation-fill-mode: both;
}

.thirdBox{
width: 500px;
height: 100px;
position: relative;
background-color: red;
animation-name: circleDance;
animation-duration: 4s;
animation-iteration-count: infinite;
animation-direction: alternate-reverse;
animation-timing-function: ease-in-out;
animation-fill-mode: both;
}

6 changes: 6 additions & 0 deletions include.js
Original file line number Diff line number Diff line change
Expand Up @@ -2880,6 +2880,12 @@ let cards = [
author: 'Jay',
githubLink: 'https://github.com/moutro'
},
{ artName: 'First Animation',
pageLink: './Art/Kalliran/index.html',
imageLink: './Art/Kalliran/Animation-Nation.gif',
author: 'Kalliran',
githubLink: 'https://github.com/Kalliran'
},
];

/* -------------------------------------------------------------------------- */
Expand Down

0 comments on commit ead6676

Please sign in to comment.