How do i display the video using play button
Posted
by
Shashank
on Stack Overflow
See other posts from Stack Overflow
or by Shashank
Published on 2012-10-02T09:25:22Z
Indexed on
2012/10/02
9:37 UTC
Read the original article
Hit count: 199
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>
© Stack Overflow or respective owner