-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnext.html
More file actions
executable file
·111 lines (111 loc) · 2.49 KB
/
next.html
File metadata and controls
executable file
·111 lines (111 loc) · 2.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<link rel="icon" href="AS/images/new.png" type="image/ico" sizes="256x256">
<style type="text/css">
@keyframes one{
from {transform: rotate(0deg);}
to {transform: rotate(360deg);}
}
@keyframes two{
from {transform: rotate(0deg);}
to {transform: rotate(-360deg);}
}
@keyframes three{
from {transform: rotate(0deg);}
to {transform: rotate(360deg);}
}
@keyframes four{
from {transform: rotate(0deg);}
to {transform: rotate(-360deg);}
}
@keyframes five{
from {transform: rotate(0deg);}
to {transform: rotate(360deg);}
}
@keyframes six{
50%{transform: translate(2.5vw,2.5vw);}
}
@keyframes seven{
50%{transform: translate(-2.5vw,2.5vw);}
}
@keyframes eight{
50%{transform: translate(0,-2.5vw);}
}
body{
background: #311B92; z-index: -1;
}
#one{
background: #4527A0; position: absolute;
z-index: 0; width: 80vw;
left: 10vw; height: 80vh;
top: 10vh; animation: one linear 2s infinite;
transition: all 0.5s ease;
}
#two{
background: #512DA8; z-index: 1;
width: 64vw; left: 18vw;
position: absolute; height: 64vh;
top: 18vh; animation: two linear 4s infinite;
transition: all 0.5s ease;
}
#three{
background: #5E35B1; z-index: 2;
width: 51.2vw; left: 24.4vw;
position: absolute; height: 51.2vh;
top: 24.4vh; animation: three linear 6s infinite;
transition: all 0.5s ease;
}
#four{
background: #673AB7; z-index: 3;
width: 40.96vw; left: 29.52vw;
position: absolute; height: 40.96vh;
top: 29.52vh; animation: four linear 8s infinite;
transition: all 0.5s ease;
}
#five{
background: #7E57C2; z-index: 4;
width: 32.768vw; left: 33.616vw;
position: absolute; height: 32.768vh;
top: 33.616vh; animation: five linear 10s infinite;
transition: all 0.5s ease;
}
#six, #seven, #eight{
background: #311B92; z-index: 5;
width: 5vw; left: 45vw;
position: absolute; height: 5vw;
top: 40vh; animation: six linear 1s infinite;
opacity: 0.6; transition: all 0.5s ease;
border-radius: 100%;
}
#seven{
left: 47.5vw; animation: seven linear 1s infinite;
}
#eight{
left: 46.25vw; top: 45vh;
animation: eight linear 1s infinite;
}
#one:hover, #two:hover, #three:hover, #four:hover, #five:hover{
opacity: 0.5;
}
</style>
<head>
<title>shades</title>
</head>
<body>
<div id="one">
</div>
<div id="two">
</div>
<div id="three">
</div>
<div id="four">
</div>
<div id="five">
</div>
<div id="six">
</div>
<div id="seven">
</div>
<div id="eight">
</div>
</body>
</html>