-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
106 lines (92 loc) · 2.05 KB
/
index.php
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
<!DOCTYPE html>
<html>
<head>
<title>Gemini Automobiles</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="land.css">
<script type="text/javascript" src="land.js"></script>
<style type="text/css">
@media only screen and (max-width: 700px) {
.company_name{
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
font-family: 'Barlow', sans-serif;
font-weight: bold;
z-index: 1000;
font-size: 410%;
display: block;
text-align: center;
}
.scrollbar {
font-family: Calibri;
font-weight: bold;
color: #2e2e1f;
font-size: 220%;
position: absolute;
animation: topup 1s;
animation-fill-mode: forwards;
}
.scrollbar-anim{
border-top-style: solid;
border-width: 2px;
border-color: #2e2e1f;
animation: abc 1s infinite;
}
.scrollbar-text:after{
content: "s w i p e";
}
}
@media only screen and (min-width: 700px) {
.company_name{
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
font-family: 'Barlow', sans-serif;
font-weight: bold;
z-index: 1000;
font-size: 500%;
display: block;
text-align: center;
}
.scrollbar {
font-family: Calibri;
font-weight: bold;
color: #2e2e1f;
font-size: 130%;
position: absolute;
animation: topup 1s;
animation-fill-mode: forwards;
}
.scrollbar-anim{
border-top-style: solid;
border-width: 2px;
border-color: #2e2e1f;
animation: abc 1s infinite;
}
.scrollbar-text:after{
content: "s c r o l l";
}
}
</style>
</head>
<body onscroll="MyFunc()">
<h1 class="company_name">
<span style="color: #666666;" >GEMINI</span><span style="color: #e65c00;"> AUTOMOBILES</span>
</h1>
<ul class="slideshow" style="list-style-type: none;">
<li><span></span></li>
<li><span></span></li>
<li><span></span></li>
<li><span></span></li>
<li><span></span></li>
<li><span></span></li>
</ul>
<div class="scrollbar">
<div class="scrollbar-text"></div>
<div class="scrollbar-anim"></div>
</div>
</body>
</html>