-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgameStart.html
More file actions
117 lines (108 loc) · 2.97 KB
/
gameStart.html
File metadata and controls
117 lines (108 loc) · 2.97 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
112
113
114
115
116
117
<!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" />
<title>Document</title>
<style>
#wrap {
width: 100%;
height: 100vh;
background: linear-gradient(to right, #29323c, #485563);
position: relative;
}
h2 {
color: #fff;
position: absolute;
left: 650px;
top: 380px;
font-size: 80px;
font-weight: bold;
text-shadow: 11px 11px 11px black;
}
h1 {
color: rgb(33, 192, 171);
position: absolute;
left: 750px;
top: 480px;
font-size: 110px;
font-weight: bold;
text-shadow: 11px 11px 11px black;
}
.slider {
box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
margin: auto;
overflow: hidden;
position: relative;
width: 960px;
}
.slider::before {
content: "";
height: 100px;
position: absolute;
width: 200px;
z-index: 2;
}
.slider::after {
content: "";
height: 100px;
position: absolute;
width: 200px;
/*z-index: 2;
*/
}
.slider::after {
right: 0;
top: 0;
transform: rotateZ(180deg);
}
.slider::before {
left: 0;
top: 0;
}
#logo img {
width: 185px;
}
button {
display: none;
}
MARQUEE {
height: 180px;
position: absolute;
top: 250px;
}
</style>
</head>
<body>
<div id="wrap" class="slider">
<div id="logo" class="slide-track">
<marquee scrollamount="25">
<img src="./image/ncdinos.png" alt="" />
<img src="./image/samsungLions.png" alt="" />
<img src="./image/lotteGiants.png" alt="" />
<img src="./image/kiaTigers.png" alt="" />
<img src="./image/lgTwins.png" alt="" />
<img src="./image/doosanBears.png" alt="" />
<img src="./image/hanhwaEagles.png" alt="" />
<img src="./image/kiwoomHeroes.png" alt="" />
<img src="./image/ssgLanders.png" alt="" />
<img src="./image/ktWiz.png" alt="" />
<img src="./image/ncdinos.png" alt="" />
<img src="./image/samsungLions.png" alt="" />
<img src="./image/lotteGiants.png" alt="" />
<img src="./image/kiaTigers.png" alt="" />
<img src="./image/lgTwins.png" alt="" />
<img src="./image/doosanBears.png" alt="" />
<img src="./image/hanhwaEagles.png" alt="" />
<img src="./image/kiwoomHeroes.png" alt="" />
<img src="./image/ssgLanders.png" alt="" />
<img src="./image/ktWiz.png" alt="" />
</marquee>
</div>
<button></button>
<h2><i>G A M E</i></h2>
<h1><i>S T A R T</i></h1>
</div>
</body>
</html>