Order Now AdSolution Sign Up | Login » Bits on the Run Sign Up | Login »

Forums

/

Thumbnail of video, click for pop up?

6 replies [Last post]

I am really new at this, I have the video on my website. But, to organize my website better I have placed navigational tabs in it. I tried to put the full size video in the tab but it isn't really working, because if you are not in the video tab the video doesn't stay in its tab and instead slides below the tab box. (example: http://www.norfieldfestool.com/fec12codr.html)

So, I would like to make a thumbnail of the video and when clicked upon it will popup the video in a new window and start playing the video. I know this is probably pretty basic but I can't find it.
Thanks.

<a href=video.html target="_blank">Click to see video</a>

put your video in a new page called video.html

ops...forgot the thumb
<a href=video.html target="_blank"><img src="cat.gif"></a>

To take this one step further -

Is there a way to add a little play button that changes color on a mouse over to the thumbnail .jpg file?

For example on cnn.com they have little thumbnail previes in the "Dont Miss" section, some of these are to videos. They have a little play button and when you put your mouse over it gets darker.

Anyone know how to do this?

nm...figured it out.

Would you mind sharing how?

 
You just display a different image onmouseover and restore the original image onmouseout.

See:http://willswonders.myip.org:8074/player5/Simple_JWBox_v5.html

Look for:<img class="play" src="PlayButtonSquare70.png" width="30" height="30" onmouseover="this.src='PlayButtonSquare70M.png'" onmouseout="this.src='PlayButtonSquare70.png'" />in the page source.