-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
90 lines (82 loc) · 1.55 KB
/
index.html
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
<div class="hero">
<div class="highway"></div>
<div class="flower"></div>
<div class="car">
<img src="car2 copy2.png" />
</div>
</div>
<style>
body {
margin: 0;
padding: 0;
background-color: #09091a;
}
.highway {
height: 400px;
width: 500%;
display: block;
background-image: url(city.png);
position: absolute;
bottom: 60;
left: 0;
right: 0;
z-index: 2;
background-repeat: repeat-x;
animation: highway 5s linear infinite;
}
@keyframes highway {
100% {
transform: translateX(-3400px);
}
}
.car {
left: 10%;
bottom: 100px;
position: absolute;
z-index: 5;
background-color: transparent;
}
.car img {
width: 100%;
animation: car 5s linear infinite;
}
@keyframes car {
100% {
transform: translateX(1500%);
opacity: 1;
}
75% {
transform: translateY(-2px);
transform: translatex(750%);
opacity: 1;
}
50% {
transform: translateY(-3px);
transform: translatex(500%);
opacity: 1;
}
25% {
transform: translateY(-2px);
transform: translatex(250%);
opacity: 1;
}
0% {
transform: translateY(-1px);
transform: translatex(-500%);
opacity: 1;
}
}
.buton {
border: 1px dotted #1fbdd9;
display: flex;
justify-content: center;
}
.buton a p {
color: #1fbdd9;
text-align: right;
font-size: 1.3rem;
}
</style>
<div class="buton">
<a href="type-2.html"><p>Type -2 (A Little Smooth Animation ) >></p></a>
</div>