mirror of
https://github.com/hyprwm/hyprland-website.git
synced 2024-11-17 02:45:59 +01:00
something
This commit is contained in:
parent
970843ab84
commit
0d85f7b54d
1 changed files with 12 additions and 5 deletions
|
@ -9,6 +9,7 @@
|
|||
/** @type HTMLVideoElement */
|
||||
let videoElement
|
||||
|
||||
let isVisible = false
|
||||
let isShowingControls = false
|
||||
let isMuted = true
|
||||
|
||||
|
@ -24,14 +25,20 @@
|
|||
class="max-w-7xl px-1 -mb-4 lg:px-8 w-full relative animate-in [animation-delay:1700ms] fade-in-0 fill-mode-backwards [animation-duration:2000ms] slide-in-from-bottom-10 z-20 {$$restProps.class}"
|
||||
>
|
||||
<div
|
||||
class="rounded-xl group opacity-20 overflow-hidden border-sky-400 border-2 scale-90 transition-all [transition-duration:1460ms] mx-3"
|
||||
class={clsx(
|
||||
'rounded-xl group overflow-hidden border-sky-400 border-2 transition-all [transition-duration:1460ms] mx-3',
|
||||
!isVisible && 'opacity-20 scale-90'
|
||||
)}
|
||||
role="banner"
|
||||
use:inview={{ unobserveOnEnter: true, threshold: 0.8 }}
|
||||
on:inview_enter={({ detail: { node } }) => {
|
||||
node.classList.remove('opacity-20')
|
||||
node.classList.remove('scale-90')
|
||||
use:inview={{ threshold: 0.8 }}
|
||||
on:inview_enter={() => {
|
||||
isVisible = true
|
||||
videoElement.play()
|
||||
}}
|
||||
on:inview_leave={() => {
|
||||
isVisible = false
|
||||
videoElement.pause()
|
||||
}}
|
||||
on:mouseenter={() => (isShowingControls = true)}
|
||||
on:mouseleave={() => (isShowingControls = false)}
|
||||
>
|
||||
|
|
Loading…
Reference in a new issue