JSFiddle - React, Tailwind, and code Playground
by markrummel
HTML
<div id="youtube" style="display:none;">
<iframe width="577" height="325" src="" wmode="transparent" frameborder="0" allowfullscreen></iframe>
</div>
<img src="https://secure-b.vimeocdn.com/ts/456/613/456613495_640.jpg" width="577" height="325" id="imageID" />
JavaScript
$(function(){
$('#imageID').click(function() {
$('#youtube').show().find("iframe").attr("src","http://www.youtube.com/embed/UB0m_c1FaJY?rel=0&showinfo=0&autoplay=1&controls=0");
$('#imageID').hide();
});
});