Skip to content

Commit

Permalink
Added kinetic_loading art for graphics (#2394)
Browse files Browse the repository at this point in the history
* Added kinetic_loading art for graphics

Added kinetic_loading art for graphics using HTML and CSS styles.

* Delete Art/Urja directory

* Add files via upload

* Update include.js

* fix syntax error in include.js

---------

Co-authored-by: Sophia Brandt <16630701+sophiabrandt@users.noreply.github.com>
  • Loading branch information
urjabahad and sophiabrandt committed Oct 30, 2023
1 parent 44392a5 commit 648cc38
Show file tree
Hide file tree
Showing 3 changed files with 76 additions and 0 deletions.
Binary file added Art/urjabahad/kinetic_loading.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
69 changes: 69 additions & 0 deletions Art/urjabahad/kinetic_loading.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>KineticLoading</title>
</head>
<body>
<style>
*{
margin: 0;
box-sizing: border-box;
}
body{
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
background-color: #2c3e50;
overflow: hidden;
}
.kinetic{
position: relative;
height:80px;
width:80px
}
.kinetic::after, .kinetic::before
{
content: "";
position: absolute;
top: 0;
left: 0;
height: 0;
width: 0;
border: 50px solid transparent;
border-bottom-color: #fff;
animation: rotA 2s linear infinite 0.5s;
}
@keyframes rotA{
0%,25%{
transform: rotate(0deg);
}
50%,75%{
transform: rotate(180deg);
}
100%{
transform: rotate(360deg);
}
}
.kinetic::before{
transform: rotate(90deg);
animation: rotB 2s linear infinite;
border-bottom-color: crimson;
}
@keyframes rotB{
0%,25%{
transform: rotate(90deg);
}
50%,75%{
transform: rotate(270deg);
}
100%{
transform: rotate(450deg);
}
}
</style>
<div class="kinetic"></div>
</body>
</html>
7 changes: 7 additions & 0 deletions include.js
Original file line number Diff line number Diff line change
Expand Up @@ -2711,6 +2711,13 @@ let cards = [
author: 'Piyush_Luitel',
githubLink: 'https://github.com/PiyushLuitel-07'
}
,{
artName: 'Kinetic Loading',
pageLink: './Art/urjabahad/kinetic_loading.html',
imageLink: './Art/urjabahad/kinetic_loading.gif',
author: 'Urja',
githubLink: 'https://github.com/urjabahad'
}
];

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

0 comments on commit 648cc38

Please sign in to comment.