JSFiddle - React, Tailwind, and code Playground

HTML

<img src="http://www.whatever9495.com/template/damei_d21/image/logo.png" data-video="https://drive.google.com/file/d/0Bwbk-P9knHkGa21vSzYzMFl6YXM/preview">

JavaScript

$('img').click(function() {
  video = '<iframe src="' + $(this).attr('data-video') + '"   width="715" height="480" frameborder="0" allowfullscreen=""></iframe>';
  $(this).replaceWith(video);
});