Add remaining samples, tooling, and local project assets

This commit is contained in:
2026-04-15 18:02:17 +09:00
parent 05d43a7999
commit 1ff6c6cbb2
862 changed files with 18979 additions and 21 deletions

View File

@@ -0,0 +1,21 @@
---
interface Props {
id: string;
videoSrc: string;
}
const { id, videoSrc } = Astro.props;
---
<div class="modal" id={id}>
<div class="modal-content">
<span class="close">&times;</span>
<video
src={videoSrc}
controls
muted="muted"
controlsList="nodownload"
></video>
<p>▲ 영상 위에 마우스 커서를 올리면 재생 컨트롤바가 보입니다.</p>
</div>
</div>