mirror of
https://github.com/hyprwm/hyprland-website.git
synced 2024-11-17 02:45:59 +01:00
154 lines
3.8 KiB
Svelte
Executable file
154 lines
3.8 KiB
Svelte
Executable file
<script>
|
|
import { inview } from 'svelte-inview'
|
|
import previewRice from '$lib/videos/end_4_rice_intro.mp4'
|
|
import previewRiceThumbnail from '$lib/videos/end_4_thumbnail.webp'
|
|
import PlayIcon from '~icons/mingcute/play-circle-line'
|
|
import clsx from 'clsx'
|
|
import IconFullscreen from '~icons/mingcute/fullscreen-fill'
|
|
import { onMount } from 'svelte'
|
|
|
|
/** @type HTMLVideoElement */
|
|
let videoElement
|
|
|
|
let isVisible = false
|
|
let isPaused = true
|
|
|
|
function togglePlay() {
|
|
videoElement.paused ? videoElement.play() : videoElement.pause()
|
|
}
|
|
|
|
function makeFullscreen() {
|
|
videoElement.requestFullscreen()
|
|
}
|
|
|
|
onMount(() => {
|
|
// Nessecary as browsers might block autoplay. The timeout is nessecary as the video is always paused at the very start, even with autoplay on
|
|
const timeout = setTimeout(() => {
|
|
isPaused = videoElement.paused
|
|
}, 10)
|
|
|
|
return () => clearTimeout(timeout)
|
|
})
|
|
</script>
|
|
|
|
<section class={$$restProps.class} class:isVisible>
|
|
<div
|
|
class="rice-video"
|
|
role="banner"
|
|
use:inview={{ threshold: 0.5 }}
|
|
on:inview_enter={() => {
|
|
isVisible = true
|
|
!isPaused && videoElement.play().catch(() => {})
|
|
}}
|
|
on:inview_leave={() => {
|
|
isVisible = false
|
|
videoElement.pause()
|
|
}}
|
|
on:inview_leave={() => (isVisible = false)}
|
|
>
|
|
<video
|
|
bind:this={videoElement}
|
|
src={previewRice}
|
|
disablepictureinpicture="true"
|
|
disableremoteplayback="true"
|
|
class="rounded-xl"
|
|
loop
|
|
muted
|
|
preload="auto"
|
|
autoplay
|
|
on:play={() => (isPaused = false)}
|
|
on:pause={() => (isPaused = true)}
|
|
poster={previewRiceThumbnail}
|
|
on:click={togglePlay}
|
|
on:dblclick={makeFullscreen}
|
|
/>
|
|
<button on:click={makeFullscreen} class="absolute bottom-0 left-0 z-10">
|
|
<IconFullscreen
|
|
class="h-10 w-10 rounded bg-black/10 p-2 opacity-60 transition-all duration-75 hover:scale-105 hover:opacity-100"
|
|
/>
|
|
</button>
|
|
<div
|
|
class={clsx(
|
|
'z-20 opacity-0 transition-opacity ',
|
|
isPaused ? 'opacity-100' : 'pointer-events-none'
|
|
)}
|
|
>
|
|
{#if isPaused}
|
|
<div
|
|
class="pointer-events-none absolute left-1/2 top-1/2 h-14 w-14 -translate-x-1/2 -translate-y-1/2 rounded-full opacity-80 shadow-sm hover:opacity-100"
|
|
>
|
|
<PlayIcon class="h-full w-full" />
|
|
</div>
|
|
{/if}
|
|
</div>
|
|
|
|
<a
|
|
class="absolute -bottom-7 left-0 block max-w-max px-3 pt-2 text-sm font-medium text-slate-100/70 hover:underline"
|
|
href="https://github.com/end-4/">Setup by @end_4</a
|
|
>
|
|
</div>
|
|
|
|
<div class="preview-rice-bg" aria="hidden" />
|
|
</section>
|
|
|
|
<style lang="postcss">
|
|
section {
|
|
@apply relative z-10 -mb-4 w-full max-w-[1400px] px-1 animate-in fade-in-0 slide-in-from-bottom-10 fill-mode-backwards [animation-delay:1700ms] [animation-duration:2000ms] md:-mt-8 lg:px-8;
|
|
|
|
contain: layout style content;
|
|
}
|
|
.rice-video {
|
|
@apply mx-3 rounded-xl;
|
|
transition: all cubic-bezier(0.9, -1, 0.065, 1.8) 1060ms;
|
|
position: relative;
|
|
box-shadow: 0px 0px 44px theme(colors.primary / 80%);
|
|
border: solid 2px theme(colors.sky.400);
|
|
scale: 0.9;
|
|
background: theme(colors.cyan.300 / 70%);
|
|
aspect-ratio: 16/9;
|
|
|
|
& video {
|
|
transition-property: opacity;
|
|
transition-duration: inherit;
|
|
transition-timing-function: inherit;
|
|
opacity: 0.3;
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
.isVisible & {
|
|
scale: 1;
|
|
background: transparent;
|
|
box-shadow: 0px 0px 24px theme(colors.primary / 50%);
|
|
|
|
& video {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
}
|
|
|
|
.preview-rice-bg {
|
|
position: absolute;
|
|
z-index: -10;
|
|
pointer-events: none;
|
|
opacity: 0.4;
|
|
min-width: 2800px;
|
|
overflow-x: hidden;
|
|
top: -160px;
|
|
left: 50%;
|
|
translate: -50% 0px;
|
|
width: 1100px;
|
|
height: 200%;
|
|
|
|
background-image: url('imgs/grain.webp'),
|
|
radial-gradient(closest-side, theme(colors.sky.500), theme(colors.indigo.500 / 0%));
|
|
|
|
mask-image: radial-gradient(
|
|
closest-side,
|
|
white,
|
|
rgba(0, 0, 0, 1),
|
|
rgba(0, 0, 0, 1) 90%,
|
|
transparent
|
|
);
|
|
}
|
|
</style>
|