2
0

events.spash-screen.php 516 B

123456789101112
  1. <main id="main-spalshScreen" class="d-flex flex-column min-vh-100 justify-content-center align-items-center">
  2. <div id="spalshScreen" style="display: none;"><img src="img/mini.png" alt="logo"></div>
  3. <script>
  4. $(document).ready(function () {
  5. $('#spalshScreen').fadeIn(1000, function () {
  6. $('#spalshScreen').delay(1000).fadeOut("slow", function () {
  7. $("#main-spalshScreen").remove();
  8. });
  9. });
  10. });
  11. </script>
  12. </main>