Skip to main content
Create new
Introduction
Reactivity
Props
Logic
Events
Bindings
Lifecycle
Stores
Motion
Transitions
Animations
Easing
SVG
Actions
Classes
Component composition
Context API
Special elements
Module context
Debugging
7GUIs
Miscellaneous
App.svelte
<script>
import { onMount } from 'svelte';
import { fade } from 'svelte/transition';

const resolution = 42;

let seal;
let pointer;

$: isFound =
seal &&
pointer &&
seal.column === pointer.column &&
seal.row === pointer.row;

function raise(_, { delay = 0, duration = 1000 }) {
return {
delay,
duration,
css: (t) => `transform: translateY(${resolution * (1 - t)}px)`,
};
}

function getCoords() {
const { width, height } = document.body.getBoundingClientRect();
const columns = Math.floor(width / resolution);
const rows = Math.floor(height / resolution);

const column = Math.floor(Math.random() * columns);
const row = Math.floor(Math.random() * (rows - 1) + 1);

return { column, row };
}

function handleSearch({ pageX, pageY }) {
if (isFound) return;
loading Svelte compiler...
/* Select a component to see its compiled code */
result = svelte.compile(source, {
generate: ,
});
/* Select a component to see its compiled code */