-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathleftjoin.html
131 lines (116 loc) · 2.64 KB
/
leftjoin.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
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<!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">
<link rel="stylesheet" href="../allstyle.css">
<title>Document</title>
<style>
body {
background-color: #9eabe4;
background-image: linear-gradient(315deg, #9eabe4 0%, #77eed8 74%);
perspective: 500px;
}
* {
font-family: helvetica, arial, sans-serif;
font-size: 1.55rem;
}
h2 {
text-align: center;
padding: 16px;
margin: 0;
}
/* crops animations that exceeds one line area */
.line {
width: 100%;
height: 4rem;
overflow: hidden;
margin-bottom: 16px;
}
.pop-outin {
animation: 2s anim-popoutin 10;
}
@keyframes anim-popoutin {
0% {
color: red;
transform: scale(0);
opacity: 0;
text-shadow: 0 0 0 rgba(0, 0, 0, 0);
}
25% {
color: red;
transform: scale(1.4);
opacity: 1;
text-shadow: 1px 3px 4px rgba(0, 0, 0, 0.5);
}
50% {
color: red;
transform: scale(1);
opacity: 1;
text-shadow: 1px 0 0 rgba(0, 0, 0, 0);
}
100% {
/* animate nothing to add pause at the end of animation */
transform: scale(1);
opacity: 1;
text-shadow: 1px 0 0 rgba(0, 0, 0, 0);
}
}
.fromtop {
animation: 2s anim-fromtop linear infinite;
}
@keyframes anim-fromtop {
0% { opacity: 0; transform: translateY(-100%);}
25% { opacity: 1; transform: translateY(0%);}
50% {
}
100% {
}
}
.container{
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
::-webkit-scrollbar {
width: 0px;
}
/* Track */
::-webkit-scrollbar-track {
background: #f1f1f1;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: #888;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #555;
}
img{
margin: 30px;
}
.img1{
width: calc(100% - 500px);
}
.img2{
width: calc(100% - 100px);
}
<!-- h1{
text-transform: uppercase;
text-align: center;
margin: 30px auto 10px;
} -->
</style>
</head>
<body>
<div class='line'>
<h1 class='pop-outin'>Left Join</h1>
</div>
<div class="container">
<img class="img1" src="leftjoin.PNG" alt="create-01">
</div>
</body>
</html>