Files
desktop/resources/preload.html
2026-01-30 17:20:14 +02:00

59 lines
1.4 KiB
HTML

<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);
}
50% {
transform: scale(1.15);
}
100% {
transform: scale(1);
}
}
</style>
<style>
* {
padding: 0px;
margin: 0px;
text-align: center;
text-decoration: none;
list-style: none;
box-sizing: border-box;
user-select: none;
-webkit-user-select: none;
-webkit-app-region: no-drag;
}
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background: transparent;
width: 100%;
}
</style>
</head>
<body>
<img src="R.png" width="100" height="100" class="pulse">
</body>
</html>