JSFiddle - React, Tailwind, and code Playground

by luwes

HTML

<iframe src="https://player.vimeo.com/video/76979871?autoplay=1" allow="autoplay" width="640" height="360" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>

<script src="https://player.vimeo.com/api/player.js"></script>
<script>
    var iframe = document.querySelector('iframe');
    var player = new Vimeo.Player(iframe);

    player.on('play', function() {
        console.log('played the video!');
    });

    player.getVideoTitle().then(function(title) {
        console.log('title:', title);
    });
    
    setTimeout(function() {
    	player.remove();
    }, 2000);
</script>