TF-3772 Animated splash Web

This commit is contained in:
DatDang
2025-06-09 11:10:02 +07:00
committed by Dat H. Pham
parent ef5a35003e
commit 6d7376aa4b
20 changed files with 18 additions and 38 deletions
Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 59 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 65 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 59 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 65 KiB

File diff suppressed because one or more lines are too long
+8 -20
View File
@@ -5,7 +5,7 @@ html {
body {
margin: 0;
min-height: 100%;
background-color: #000000;
background-color: #ffffff;
background-size: 100% 100%;
}
@@ -55,23 +55,11 @@ body {
right: 0;
}
.loader {
margin: 16px;
border: 2px solid #f3f3f3;
border-radius: 50%;
border-top: 2px solid #007AFF;
width: 18px;
height: 18px;
-webkit-animation: spin 2s linear infinite;
animation: spin 2s linear infinite;
}
@-webkit-keyframes spin {
0% { -webkit-transform: rotate(0deg); }
100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
.bottom-image {
position: absolute; /* Position relative to the .container */
bottom: 40px; /* 40px from the bottom */
width: 210px; /* Fixed width */
height: auto; /* Maintain aspect ratio */
left: 50%; /* Start from the horizontal center */
transform: translateX(-50%); /* Adjust to truly center the image */
}