Video demos
Video Modal
While large thumbnails can play video inline, sometimes we might want to have a small thumbnail that open the video in a modal.
Usage
import { createPlayer } from './player.js';
createPlayer(document.getElementById('myPlayer'), {
src: 'video.mp4',
thumb: 'thumb.png',
title: 'How Your Income Flows',
playInline: true,
hoverContent: '<button class="VideoHoverButton">Ask AI</button>',
endContent: '<div class="end-card">...</div>',
});