clan-homepage/templates/shortcodes/asciinema.html
Luis-Hebendanz 820513c08b
All checks were successful
check / test (push) Successful in 15s
deploy / test (push) Successful in 15s
Fix autoplay not working on chrome. Automatic terminal theme change on browser theme change
2024-03-19 12:52:49 +07:00

16 lines
464 B
HTML

<div id="{{name}}" {% if class %}class="{{ class }}"{% endif %}>
<script src="{{ get_url(path='asciinema-player/asciinema-player.min.js') }}"></script>
<script>
AsciinemaPlayer.create('{{ get_url(path="videos/" ~ name) }}',
document.getElementById("{{name}}"), {
loop: true,
autoPlay: true,
controls: false,
speed: 1.5,
theme: "alabaster-auto"
});
</script>
</div>