Skip to content

Commit 98484d3

Browse files
committed
Mine Craft Spider Loader added with readme
1 parent 81d0f73 commit 98484d3

File tree

3 files changed

+70
-0
lines changed

3 files changed

+70
-0
lines changed

Minecraft Spider Loader/README.md

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
2+
# Miecraft Sider Spinner
3+
4+
## 🚀 About Me
5+
I'm a full stack developer...you can follow me here -https://github.com/RAHULBAWA777
6+
7+
8+
## Run Locally
9+
10+
Clone the project
11+
12+
13+
Start the live server
14+
15+
16+
## Used By
17+
18+
This project is used by the following companies:
19+
20+
-https://github.com/Dezenix/frontend-html-css-js

Minecraft Spider Loader/index.html

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<link rel="stylesheet" href="style.css" />
8+
<title>MineCraft Spider Loader</title>
9+
</head>
10+
<body>
11+
<div class="crust">
12+
<div class="core"></div>
13+
</div>
14+
</body>
15+
</html>

Minecraft Spider Loader/style.css

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
body{
2+
background-color: black;
3+
}
4+
.crust {
5+
margin-top: 20%;
6+
display: flex;
7+
justify-content: center;
8+
align-items: center;
9+
}
10+
11+
.crust .core {
12+
width: calc(170px / 7);
13+
height: calc(70px / 7);
14+
background-color: #acff1d;
15+
color: #acff1d;
16+
box-shadow: 20px 20px 0 0, -20px -20px 0 0, 20px -20px 0 0, -20px 20px 0 0,
17+
0 20px 0 0, 20px 0 0 0, -20px 0 0 0, 0 -20px 0 0;
18+
animation: revolve 4s linear infinite;
19+
}
20+
21+
@keyframes revolve {
22+
50% {
23+
box-shadow: 20px 20px 0px 0px, -20px -20px 0px 0px, 20px -20px 0px 0px,
24+
-20px 20px 0px 0px, 0px 10px 0px 0px, 10px 0px 0px 0px, -10px 0px 0px 0px,
25+
0px -10px 0px 0px;
26+
}
27+
75% {
28+
box-shadow: 20px 20px 0px 0px, -20px -20px 0px 0px, 20px -20px 0px 0px,
29+
-20px 20px 0px 0px, 0px 10px 0px 0px, 10px 0px 0px 0px, -10px 0px 0px 0px,
30+
0px -10px 0px 0px;
31+
}
32+
100% {
33+
transform: rotate(360deg);
34+
}
35+
}

0 commit comments

Comments
 (0)