Video gallery with thumbnail preview - any tips how?

Discussion in 'HTML & Website Design' started by Drumso, Mar 1, 2013.

  1. #1
    I am trying to set up a gallery of video thumbnails the play a preview of the video when hovering over it with the mouse. Much like these:

    http://www.istockphoto.com/search/text/Tasmanian%20Devil/filetype/video/source/basic#e43609a
    or
    https://www.pond5.com/stock-video-footage/1/*.html

    (Hover the mouse over a video to see what I am looking for)

    I cannot find any plugin that achieves this nor do I find a jquery solution. Has anybody any tip for me? I'd highly appreciate. Tnx.

    Ronald
     
    Drumso, Mar 1, 2013 IP
  2. themes4all

    themes4all Well-Known Member

    Messages:
    662
    Likes Received:
    47
    Best Answers:
    6
    Trophy Points:
    100
    #2
    with a simple little search, you can use jquery media preview plugin, check the Link

    Goodluck ;)
     
    themes4all, Mar 1, 2013 IP
  3. creativewebmaster

    creativewebmaster Active Member

    Messages:
    654
    Likes Received:
    7
    Best Answers:
    4
    Trophy Points:
    78
    #3
    Below code help you to make video play while mouse hover.

    <video src="video.webm" id="id0" width="300" onMouseOver="id0.play()" onMouseOut="id0.pause()" onclick="window.location='video.webm';id0.pause()" loop title="video.webm " ></video>

    Also, you can find some tutorials over here: http://www.html5rocks.com/en/tutorials/video/basics/
     
    creativewebmaster, Mar 2, 2013 IP