Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Loading #2566

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open

Loading #2566

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions Art/loading/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>loading</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<ul>
<li>L</li>
<li>O</li>
<li>A</li>
<li>D</li>
<li>I</li>
<li>N</li>
<li>G</li>
</ul>
</body>
</html>
Binary file added Art/loading/loading.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
68 changes: 68 additions & 0 deletions Art/loading/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
body{
margin: 0;
padding: 0;
background: #262626;
}
ul{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
margin: 0;
padding: 0;
display: flex;
}
ul li{
list-style: none;
color: #484848;
font-family: arial;
font-size: 5em;
letter-spacing: 15px;
animation: animate 1.4s linear infinite;
}
@keyframes animate
{
0%
{
color: #484848;
text-shadow: none;
}
90%
{
color: #484848;
text-shadow: none;
}
100%
{
color: #fff900;
text-shadow: 0 0 7px #fff900, 0 0 50px #fff6c00;
}
}
ul li:nth-child(1)
{
animation-delay: .2s;
}
ul li:nth-child(2)
{
animation-delay: .4s;
}
ul li:nth-child(3)
{
animation-delay: .6s;
}
ul li:nth-child(4)
{
animation-delay: .8s;
}
ul li:nth-child(5)
{
animation-delay: 1s;
}
ul li:nth-child(6)
{
animation-delay: 1.2s;
}
ul li:nth-child(7)
{
animation-delay: 1.4s;
}
7 changes: 7 additions & 0 deletions include.js
Original file line number Diff line number Diff line change
Expand Up @@ -2903,6 +2903,13 @@ let cards = [
author: 'Kalliran',
githubLink: 'https://github.com/Kalliran'
},
{
artName: 'Loading Animation',
pageLink: './Art/loading/index.html',
imageLink: './Art/loading/loading.gif',
author: 'Ato186',
githubLink: 'https://github.com/Ato186'
},
];

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