How do i display the video using play button
- by Shashank
I want to display the video using click to play button which pops up a window. As seen here. Currently I am using iframe to display the video. How to do that using html, css?
Currently this is the code to display the video
<div class="player">
<iframe src="http://player.vimeo.com/video/<?= $vimeo;?>?title=0&byline=0&portrait=0&color=abcc16&autoplay=0" width="250" height="250" frameborder="0" webkitAllowFullScreen allowFullScreen></iframe>
</div>