update styles and cautions
This commit is contained in:
parent
59f2c716dd
commit
3099ab1244
2 changed files with 31 additions and 21 deletions
19
index.php
19
index.php
|
@ -47,7 +47,7 @@
|
||||||
<div style="text-align:center;">Son veri güncelleme: <span id="latest-data"></span>
|
<div style="text-align:center;">Son veri güncelleme: <span id="latest-data"></span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div style="text-align: center;align-self:center;"><a href="https://asandikci.com/bagis/">Bana Bi' Kahve Ismarla ☕</a></div>
|
<div style="text-align: center;align-self:center;background-color: darkblue;border-radius:10px; padding:1px;"><a style="color: orange;font-weight:800;" href="https://asandikci.com/bagis/">👉 Bana Bi' Kahve Ismarla ☕</a></div>
|
||||||
</article>
|
</article>
|
||||||
|
|
||||||
<footer>
|
<footer>
|
||||||
|
@ -436,9 +436,24 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
const persons2 = <?php echo json_encode(getAllPersonNames(), JSON_UNESCAPED_UNICODE) ?>;
|
const persons2 = <?php echo json_encode(getAllPersonNames(), JSON_UNESCAPED_UNICODE) ?>;
|
||||||
person2.sort();
|
persons2.sort();
|
||||||
autocomplete(document.getElementById("mainInput"), persons2);
|
autocomplete(document.getElementById("mainInput"), persons2);
|
||||||
</script>
|
</script>
|
||||||
|
<script>
|
||||||
|
var t = setInterval(tick, 1000);
|
||||||
|
function tick(){
|
||||||
|
var curTime = new Date();
|
||||||
|
if (curTime.getHours() == 0 && curTime.getMinutes() == 0 && curTime.getSeconds() > 1 && curTime.getSeconds() < 3){
|
||||||
|
console.debug("Kullanıcının Ekranı Açıkken Farklı Bir Güne Geçiş Yapıldı, Statlar Sıfırlanıyor ve Kullanıcı Bilgilendiriliyor");
|
||||||
|
localStorage.removeItem("guesses");
|
||||||
|
localStorage.removeItem("latest_guess");
|
||||||
|
localStorage.removeItem("win");
|
||||||
|
document.getElementById("tebriks").style.display = "none";
|
||||||
|
document.getElementById("tahminler").innerHTML = "<h2 style='text-align:center;'>Gece Yarısını Geçtiniz, Lütfen Sayfayı Yenile<span style='color:red;'>ME</span>den direkt yeni tahminizde bulununuz👆</h2><p style='text-align:center;'>Kullanıcının cihazının saati baz alınmıştır, sunucunun yenilenmesi için birkaç saniye daha beklemeniz gerekebilir</p>"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
<script src="https://cdn.jsdelivr.net/npm/@tsparticles/confetti@3.0.3/tsparticles.confetti.bundle.min.js"></script>
|
<script src="https://cdn.jsdelivr.net/npm/@tsparticles/confetti@3.0.3/tsparticles.confetti.bundle.min.js"></script>
|
||||||
|
|
||||||
|
|
||||||
</html>
|
</html>
|
|
@ -206,8 +206,3 @@ function parseTOML()
|
||||||
$array = $parser::ParseFile(__DIR__ . "/../data.toml");
|
$array = $parser::ParseFile(__DIR__ . "/../data.toml");
|
||||||
return $array;
|
return $array;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
if ($_POST['updateData'] != null && $_POST['updateData'] == "yes") {
|
|
||||||
updateRemoteData();
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in a new issue