-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathloading.html
More file actions
68 lines (64 loc) · 1.6 KB
/
loading.html
File metadata and controls
68 lines (64 loc) · 1.6 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
<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Topluyo Yükleniyor</title>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
font-family: "Arial", sans-serif;
background: url("./icons/loadingBackgroundImg.gif") no-repeat center center fixed;
background-size: cover;
-webkit-app-region: drag;
position: relative;
}
/* Arka plana hafif karartma efekti */
body::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
z-index: 0;
}
.loading {
font-size: 2rem;
font-weight: bold;
color: #ffffff;
text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
position: relative;
z-index: 1;
}
/* Modern loading animasyonu */
.loading::after {
content: "";
display: block;
width: 50px;
height: 50px;
margin: 20px auto;
border: 5px solid rgba(255, 255, 255, 0.3);
border-top: 5px solid #ffffff;
border-radius: 50%;
animation: spin 1s linear infinite;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
</style>
</head>
<body>
<div class="loading">Yükleniyor...</div>
</body>
</html>