bugfix: text scroll now appears faster

This commit is contained in:
Трошин Антон Валерьевич
2026-07-12 10:34:06 +03:00
parent 45c72fc4df
commit fc13a8832d
3 changed files with 6 additions and 6 deletions
+3 -3
View File
@@ -10,7 +10,7 @@
<link rel="manifest" href="manifest.json">
<link rel="icon" type="image/svg+xml" href="icon.svg">
<link rel="apple-touch-icon" href="icon-192.png">
<link rel="stylesheet" href="styles.css?v=39">
<link rel="stylesheet" href="styles.css?v=40">
</head>
<body>
<div id="app">
@@ -155,10 +155,10 @@
</div>
<script type="module" src="app.js?v=39"></script>
<script type="module" src="app.js?v=40"></script>
<script>
if ('serviceWorker' in navigator) {
navigator.serviceWorker.register('/sw.js?v=39').catch(() => {});
navigator.serviceWorker.register('/sw.js?v=40').catch(() => {});
}
</script>
</body>
+2 -2
View File
@@ -117,8 +117,8 @@ body {
}
@keyframes ticker-scroll {
0% { transform: translateX(100%); }
100% { transform: translateX(-100%); }
0% { transform: translateX(0); }
100% { transform: translateX(-50%); }
}
/* BUTTONS */
+1 -1
View File
@@ -1,4 +1,4 @@
const CACHE_NAME = 'numnum-v39';
const CACHE_NAME = 'numnum-v40';
const ASSETS = [
'/',
'/index.html',