fix throwing error screen before loading update

This commit is contained in:
RoyceDa
2026-01-30 17:20:14 +02:00
parent d099346056
commit ad696616e1
4 changed files with 121 additions and 80 deletions

View File

@@ -1,26 +1,35 @@
<html lang="en">
<head>
<meta charset="UTF-8">
<!--
Нужно чтобы точно определить, что сейчас показывается preload
И при старте начинать проверять boot только после того, как этот файл загрузится
-->
<meta key="preloadersignature">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rosetta</title>
<style>
.pulse {
animation: pulse 1s infinite;
}
@keyframes pulse {
0% {
transform: scale(1);
<style>
.pulse {
animation: pulse 1s infinite;
}
50% {
transform: scale(1.15);
@keyframes pulse {
0% {
transform: scale(1);
}
50% {
transform: scale(1.15);
}
100% {
transform: scale(1);
}
}
100% {
transform: scale(1);
}
}
</style>
<style>
*{
* {
padding: 0px;
margin: 0px;
text-align: center;
@@ -31,7 +40,8 @@
-webkit-user-select: none;
-webkit-app-region: no-drag;
}
body{
body {
display: flex;
justify-content: center;
align-items: center;
@@ -41,7 +51,9 @@
}
</style>
</head>
<body>
<img src="R.png" width="100" height="100" class="pulse">
</body>
</html>