Transitions never actually animated: Svelte scopes @keyframes names but does NOT rewrite animation references in inline style attributes, so the inline 'animation: crossfade-in ...' never matched its scoped keyframe — a hard cut, no fade (Ken Burns' zoom was dead too). Move the animation into scoped classes and pass dynamic values via CSS custom properties. - Real two-layer crossfade: hold the outgoing frame opaque beneath the incoming one (which is decode-gated), so there's no black flash and no decode pop. - New slide transitions (from below/left/right) as one reusable component; the previous frame is pushed off the opposite edge in step (a conveyor/push), easeInOutSine 1s. - Fullscreen toggle button (Fullscreen API) + 'f' shortcut; Esc in fullscreen no longer also navigates away. - Controls now reveal on pointer/keyboard activity and fade when idle (cursor hides too) instead of being always visible. - wakelock: null the sentinel on the OS 'release' event so re-acquire-on-visible actually fires (previously the screen could sleep after the tab was first hidden). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
67 lines
1.8 KiB
Svelte
67 lines
1.8 KiB
Svelte
<script lang="ts">
|
|
// Crossfade + slow zoom and pan (the "Ken Burns" effect). Image-only — videos
|
|
// fall back to the crossfade behaviour to avoid double-animation.
|
|
|
|
interface Props {
|
|
src: string;
|
|
isVideo: boolean;
|
|
durationMs: number;
|
|
/** Fired when a video slide finishes so the parent can advance early. */
|
|
onended?: () => void;
|
|
}
|
|
|
|
let { src, isVideo, durationMs, onended }: Props = $props();
|
|
|
|
// Mild random pan so each slide feels different. Range chosen so the image never
|
|
// pans out of frame given the object-fit: cover.
|
|
const panX = Math.round((Math.random() - 0.5) * 6); // -3% .. +3%
|
|
const panY = Math.round((Math.random() - 0.5) * 6);
|
|
</script>
|
|
|
|
<!-- Both animations live in scoped classes rather than inline `style="animation:…"`.
|
|
Svelte scopes `@keyframes` names and only rewrites `animation` references inside this
|
|
<style> block, so an inline animation name never matches the scoped keyframe and the
|
|
effect silently dies. Dynamic values (fade duration, pan origin) pass through as inline
|
|
custom properties / properties that Svelte leaves untouched. -->
|
|
<div
|
|
class="kb absolute inset-0 flex items-center justify-center overflow-hidden bg-black"
|
|
style="--fade-dur: {durationMs}ms"
|
|
>
|
|
{#if isVideo}
|
|
<!-- svelte-ignore a11y_media_has_caption -->
|
|
<video {src} autoplay muted playsinline {onended} class="h-full w-full object-contain"></video>
|
|
{:else}
|
|
<img
|
|
{src}
|
|
alt=""
|
|
class="kb-img h-full w-full object-cover"
|
|
style="transform-origin: {50 + panX}% {50 + panY}%;"
|
|
/>
|
|
{/if}
|
|
</div>
|
|
|
|
<style>
|
|
.kb {
|
|
animation: kb-fade var(--fade-dur, 600ms) ease-out forwards;
|
|
}
|
|
.kb-img {
|
|
animation: kb-zoom 10s ease-out forwards;
|
|
}
|
|
@keyframes kb-fade {
|
|
from {
|
|
opacity: 0;
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
@keyframes kb-zoom {
|
|
from {
|
|
transform: scale(1);
|
|
}
|
|
to {
|
|
transform: scale(1.1);
|
|
}
|
|
}
|
|
</style>
|