| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <script>
- import logo from '$lib/images/logo.png';
- </script>
- <svelte:head>
- <title>Home</title>
- <meta name="description" content="Svelte demo app" />
- </svelte:head>
- <section>
- <div id="content">
- <img id="bounce-image" src={logo} alt="OQuokka" />
- </div>
- </section>
- <style>
- section {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- flex: 0.6;
- }
- h1 {
- width: 100%;
- }
- #bounce-image {
- width: 300px;
- animation: bounce 2s infinite;
- }
- @keyframes bounce {
- 0%,
- 100% {
- transform: translateY(0);
- }
- 50% {
- transform: translateY(-50px);
- }
- }
- </style>
|