+page.svelte 621 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <script>
  2. import logo from '$lib/images/logo.png';
  3. </script>
  4. <svelte:head>
  5. <title>Home</title>
  6. <meta name="description" content="Svelte demo app" />
  7. </svelte:head>
  8. <section>
  9. <div id="content">
  10. <img id="bounce-image" src={logo} alt="OQuokka" />
  11. </div>
  12. </section>
  13. <style>
  14. section {
  15. display: flex;
  16. flex-direction: column;
  17. justify-content: center;
  18. align-items: center;
  19. flex: 0.6;
  20. }
  21. h1 {
  22. width: 100%;
  23. }
  24. #bounce-image {
  25. width: 300px;
  26. animation: bounce 2s infinite;
  27. }
  28. @keyframes bounce {
  29. 0%,
  30. 100% {
  31. transform: translateY(0);
  32. }
  33. 50% {
  34. transform: translateY(-50px);
  35. }
  36. }
  37. </style>