UNPKG

pupcaps

Version:

PupCaps! : A script to add stylish captions to your videos.

42 lines (36 loc) 1.02 kB
<!DOCTYPE html> <html data-theme="light" lang="en"> <head> <title>PupCaps! - Page for Puppeteer</title> <!-- Vendors --> <script src="./node_modules/vue/dist/vue.global.prod.js"></script> <link rel="stylesheet" href="./node_modules/bulma/css/bulma.css" /> <link rel="stylesheet" href="./node_modules/@fortawesome/fontawesome-free/css/all.css" /> <style> html, body, #video { background: none !important; background-color: transparent !important; } </style> <link rel="stylesheet" href="./captions.css" /> <link rel="stylesheet" href="./video.size.css" /> <script type="module" src="./captions.js"> </script> <script type="module" src="./player.args.js"> </script> <script type="module" src="./index.js"> </script> </head> <body> <!-- Controllers for preview --> <div id="player-controller"> <player></player> </div> <div id="video"> <div class="captions"> </div> </div> </body> </html>