Skip to content

Commit

Permalink
Merge pull request #362 from RAHULBAWA777/patch-71
Browse files Browse the repository at this point in the history
Mine Craft Spider Loader
  • Loading branch information
Jaideep25-tech authored May 31, 2022
2 parents 3544bf7 + 98484d3 commit 1c09bb7
Show file tree
Hide file tree
Showing 3 changed files with 70 additions and 0 deletions.
20 changes: 20 additions & 0 deletions Minecraft Spider Loader/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@

# Miecraft Sider Spinner

## 🚀 About Me
I'm a full stack developer...you can follow me here -https://github.com/RAHULBAWA777


## Run Locally

Clone the project


Start the live server


## Used By

This project is used by the following companies:

-https://github.com/Dezenix/frontend-html-css-js
15 changes: 15 additions & 0 deletions Minecraft Spider Loader/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<!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>MineCraft Spider Loader</title>
</head>
<body>
<div class="crust">
<div class="core"></div>
</div>
</body>
</html>
35 changes: 35 additions & 0 deletions Minecraft Spider Loader/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
body{
background-color: black;
}
.crust {
margin-top: 20%;
display: flex;
justify-content: center;
align-items: center;
}

.crust .core {
width: calc(170px / 7);
height: calc(70px / 7);
background-color: #acff1d;
color: #acff1d;
box-shadow: 20px 20px 0 0, -20px -20px 0 0, 20px -20px 0 0, -20px 20px 0 0,
0 20px 0 0, 20px 0 0 0, -20px 0 0 0, 0 -20px 0 0;
animation: revolve 4s linear infinite;
}

@keyframes revolve {
50% {
box-shadow: 20px 20px 0px 0px, -20px -20px 0px 0px, 20px -20px 0px 0px,
-20px 20px 0px 0px, 0px 10px 0px 0px, 10px 0px 0px 0px, -10px 0px 0px 0px,
0px -10px 0px 0px;
}
75% {
box-shadow: 20px 20px 0px 0px, -20px -20px 0px 0px, 20px -20px 0px 0px,
-20px 20px 0px 0px, 0px 10px 0px 0px, 10px 0px 0px 0px, -10px 0px 0px 0px,
0px -10px 0px 0px;
}
100% {
transform: rotate(360deg);
}
}

0 comments on commit 1c09bb7

Please sign in to comment.