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

Adding my animation to the project #2555

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
Binary file added Art/Romankyv/BlobScale.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/Romankyv/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<!DOCTYPE html>
<html>
<head>
<title></title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<section>
<div class="loader">
<div class="dot"></div>
</div>
</section>
</body>
</html>
53 changes: 53 additions & 0 deletions Art/Romankyv/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
*
{
margin: 0;
padding: 0;
box-sizing: border-box;
background-color: #001300;
}

section {
padding: 100px;
position: relative;
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
background: #001300;
}

section .loader {
position: relative;
}

section .loader .dot {
position: relative;
display: block;
width: 60px;
height: 60px;
background: #178ccb;
box-shadow: 0 0 10px #178ccb,
0 0 20px #178ccb,
0 0 40px #178ccb,
0 0 60px #178ccb,
0 0 80px #178ccb,
0 0 100px #178ccb;
margin: 20px 10px;
transform: scale(2.0);
border-radius: 50%;
animation: animateDot 3s ease-in-out infinite;
}

@keyframes animateDot {
0% {
transform: scale(0.2);
}
10% {
transform: scale(1);
}
50%,100% {
transform: scale(0.2);
}

}
7 changes: 7 additions & 0 deletions include.js
Original file line number Diff line number Diff line change
Expand Up @@ -964,6 +964,13 @@ let cards = [
author: 'Jeet Kanodia',
githubLink: 'https://github.com/jeetkanodia'
},
{
artName: 'Blob Scale',
pageLink: './Art/romankyv/index.html',
imageLink: './Art/romankyv/BlobScale.gif',
author: 'Roman',
githubLink: 'https://github.com/romankyv'
},
{
artName: 'Flower',
pageLink: './Art/ChrRepou/flower.html',
Expand Down