JSFiddle - React, Tailwind, and code Playground
HTML
<iframe id="player_1" src="http://player.vimeo.com/video/12054305?autoplay=1&loop=1" width="640" height="374" frameborder="0"></iframe>
<a href="#" id="stop">Pause</a>
JavaScript
var iframe = $('#player_1')[0];
var player = $f(iframe);
$('#stop').click(function() {
/*alert('stoped');*/
player.api('pause');
document.getElementById("headline").style.display = "block";
});
$('#play').click(function(){
/*alert('play');*/
player.api('play');
document.getElementById("headline").style.display = "none";
})