add showcase videos

This commit is contained in:
outfoxxed 2024-11-08 04:24:53 -08:00
parent fc0eb74824
commit 57f3c5f3f0
Signed by: outfoxxed
GPG key ID: 4C88A185FB89301E
4 changed files with 33 additions and 15 deletions

BIN
public/assets/showcase/flicko.mp4 (Stored with Git LFS) Normal file

Binary file not shown.

BIN
public/assets/showcase/outfoxxed.mp4 (Stored with Git LFS) Normal file

Binary file not shown.

BIN
public/assets/showcase/vaxry.mp4 (Stored with Git LFS) Normal file

Binary file not shown.

View file

@ -1,18 +1,24 @@
---
import { Icon } from "astro-icon/components";
function placeholders() {
const word = "placeholder";
let str: string;
const arr: string[] = [];
for (let i = 0; i < 10; i++) {
str = `${word}-${i}`;
arr.push(str);
}
return arr;
}
const videos = [
{
author: "outfoxxed",
authorlink: "https://outfoxxed.me",
path: "/assets/showcase/outfoxxed.mp4",
},
{
author: "flicko",
authorlink: "https://github.com/flick0",
path: "/assets/showcase/flicko.mp4",
},
{
author: "vaxry",
authorlink: "https://vaxry.net",
path: "/assets/showcase/vaxry.mp4",
},
];
const ph = placeholders();
---
<div class="marquee">
<div class="marquee-scroll">
@ -25,10 +31,13 @@ const ph = placeholders();
</div>
</div>
<div id="marquee-content" class="marquee-content" data-scroll="0">
{ph.map(_ => <div class="marquee-item">
<video class="marquee-item-spacing marquee-item-content" controls>
<source src="/assets/simple-shell-livereload.mp4" type="video/mp4"/>
</video>
{videos.map(({ author, authorlink, path }, index) => <div class="marquee-item">
<div>
<video class="marquee-item-spacing marquee-item-content" muted controls {...(index == 0 ? {autoplay: ""} : {})}>
<source src={path} type="video/mp4"/>
</video>
<p>Configuration by <a href={authorlink}>{author}</a></p>
</div>
</div>)}
</div>
</div>