Skip to content

Commit

Permalink
completed kinetic css loaded
Browse files Browse the repository at this point in the history
  • Loading branch information
tsr-kairi committed Jul 6, 2021
1 parent 6510293 commit f2c7daf
Show file tree
Hide file tree
Showing 3 changed files with 92 additions and 0 deletions.
Empty file.
19 changes: 19 additions & 0 deletions Day 23 - Kinetic CSS Loader/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./style.css" />
<title>Kinetic Loader</title>
</head>
<body>
<div class="kinetic">

</div>



<script src="./app.js"></script>
</body>
</html>
73 changes: 73 additions & 0 deletions Day 23 - Kinetic CSS Loader/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
*::after,
*::before {
box-sizing: border-box;
margin: 0;
padding: 0;
}

body {
background-color: #2c3e50;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
overflow: hidden;
margin: 0;
}

.kinetic {
position: relative;
height: 80px;
width: 80px;
}

.kinetic::after,
.kinetic::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 0;
height: 0;
border: 50px solid transparent;
border-bottom-color: #fff;
/* border-top-color: #fff; */
animation: rotateA 2s linear infinite 0.5s;
}

.kinetic::before {
transform: rotate(90deg);
animation: rotateB 2s linear infinite;
}

@keyframes rotateA {
0%,
25% {
transform: rotate(0deg);
}

50%,
75% {
transform: rotate(180deg);
}

100% {
transform: rotate(360deg);
}
}

@keyframes rotateB {
0%,
25% {
transform: rotate(90deg);
}

50%,
75% {
transform: rotate(270deg);
}

100% {
transform: rotate(450deg);
}
}

0 comments on commit f2c7daf

Please sign in to comment.