mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-18 06:44:46 -07:00
63 lines
2.2 KiB
Text
63 lines
2.2 KiB
Text
---
|
|
import Poster from './poster.astro'
|
|
|
|
const {
|
|
video,
|
|
width = '325px',
|
|
classes = 'w-full flex-shrink-0 flex-grow-0 border-2 border-transparent rounded-2xl overflow-hidden'
|
|
} = Astro.props
|
|
|
|
const cardClasses = `video-card ${ classes }`
|
|
|
|
---
|
|
<div
|
|
class={ cardClasses }
|
|
style={ `max-width: ${ width }; flex-basis: ${ width }; scroll-snap-align: start;` }
|
|
>
|
|
<a
|
|
href={video.endpoint}
|
|
class=""
|
|
>
|
|
<div class="video-card-container relative overflow-hidden bg-black">
|
|
<div class="video-card-image ratio-wrapper">
|
|
<div class="relative overflow-hidden w-full pb-16/9">
|
|
<Poster video={video} />
|
|
</div>
|
|
</div>
|
|
<div
|
|
style="--gradient-from-color: rgba(0, 0, 0, 1); --gradient-to-color: rgba(0, 0, 0, 0.7)"
|
|
class="video-card-overlay absolute inset-0 flex justify-between items-start bg-gradient-to-tr from-black to-transparent p-4"
|
|
>
|
|
<div class="play-circle w-8 h-8 bg-white-2 flex justify-center items-center outline-0 rounded-full ease">
|
|
<svg
|
|
viewBox="0 0 18 18"
|
|
style="width:18px;height:18px;margin-left:3px"
|
|
>
|
|
<path
|
|
fill="currentColor"
|
|
d="M15.562 8.1L3.87.225c-.818-.562-1.87 0-1.87.9v15.75c0 .9 1.052 1.462 1.87.9L15.563 9.9c.584-.45.584-1.35 0-1.8z"
|
|
/>
|
|
</svg>
|
|
</div>
|
|
|
|
{ ( video.tags.includes('benchmark') ) ?
|
|
<div
|
|
class="video-pill h-5 text-xs bg-white-2 flex justify-center items-center outline-0 rounded-full ease px-2"
|
|
>
|
|
Benchmark
|
|
</div> : ''
|
|
}
|
|
|
|
</div>
|
|
|
|
<!-- Video Text Content -->
|
|
<div class="video-card-content absolute inset-0 flex items-end py-4 px-6">
|
|
<div class="w-full text-sm text-left whitespace-normal">{ video.name }</div>
|
|
</div>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
|
|
<script>
|
|
import 'lazysizes'
|
|
</script>
|