Sunday, December 9, 2012

HTML5 Blue Video Gallery

HTML5 - HTML5 Blue Video Gallery - CodeCanyon

HTML5 Blue Video Gallery his title this type of HTML5/Media This time I will review,made by ZoomIt, HTML5/Media is sold at a price of $7 in CodeCanyon. HTML5 Blue Video Gallery - CodeCanyon Item for Sale description // flash // flash fallback // flashvars // fullscren // gallery // graphics // html5 // ie // images // info // localstorage // video // volume // xml //
Created 3 September 10
Last Update 5 April 13
Compatible Browsers IE7, IE8, IE9, IE10, Firefox, Safari, Opera, Chrome
Software Version HTML5
High Resolution No
Files Included JavaScript JS, HTML, CSS

Intro

Want a Video Gallery that is easy to install, to customize, works in all browsers ( even IE8 ), is up to the latest standards ( html5 ), has multimedia support too ( audio / images ) , can feed from video sharing providers ( youtube / vimeo ) ? Then this is the Video Gallery to showcase your videos on your site.

The gallery works in all major browsers environment – including IE through flash fall-back. Also, by inputting a single video in the video gallery, it becomes a video player.

This gallery uses the latest html5 tehniques. For example – it uses HTML5 LocalStorage to remember the last volume you had before you exit and sets back that volume when you come back. The skin is setup via simple CSS – so it’s fully skin-able with basic CSS

Updates

UPDATE 6.10 [ 10/02/2013 ]

  • [fix] bug at ending of youtube video, the audio would still play
UPDATE 5.11 [ 10/02/2013 ]
  • fixed a fatal IE9 / IE10 bug
  • updated to work with jquery 1.9.1 without migrate plugin
UPDATE 5.00 [ 01/10/2013 ]
  • added HD button for YouTube videos
  • added new way to scroll the menu thumbsandarrows ( check YouTube Channel demo in the preview )
  • added three new modes – rotator, rotator3d and wall
  • skins for gallery and player are now independent
  • added new gallery skin – nav_transparent – menu items circular and transparent navigation
  • added new awesome skin for the player – aurora
  • updated documentation
  • other bugs fixed
UPDATE 4.10 [ 10/22/2012 ]
  • fixed fullscreen bugs ( works perfectly on Safari, Chrome, Firefox and future compliant browsers )
  • added advertisement support – image / youtube or video ad
  • other bugs fixed
UPDATE 4.0 [ 05/02/2012 ]
  • fixed some bugs
  • changed video gallery and video player DOM structure
  • added a new buffering bar
  • added Vimeo support
  • added audio support
  • added image support
  • added embed button
  • added share button
  • added real fullscreen for Chrome, Safari, Firefox
UPDATE 3.0 [ 02/23/2012 ]
  • fixed some bugs
  • restructured documentation
  • changed video gallery and video player DOM structure

UPDATE 2.0 [ 07/09/2011 ]

  • fixed some bugs
  • iPod/iPad/iPhone supports
  • updated to the latest html5 standards

Features

  • focus on the video – the fullscreen button let’s you enjoy the video on the whole browser window
  • html5 powered - html5 video element & javascript localStorage makes this a cutting edge gallery
  • remembers your preferences – this player uses Html5’s LocalStorage in order to store the last volume you have set, so when you close the page and open it later, the volume is right back where you left it
  • compatible with all major browsers, including IE – provides flash fallback for the browsers that don’t support the video tag ( you can specify which video to play through FlashVars ) the flash video player has the same skin as the default one so it looks the same on all platforms
  • iphone / ipad compatible – this gallery has been optimized apple touch devices
  • css powered skins – the gallery css is pided into two parts – functional and estethic so it’s very easy to make your own skin

    Assets

    Video from – http://www.bigbuckbunny.org/

    FAQ

    1st video works fine but, 2nd video doesn’t load at all
    Most probably you are testing and have attached the same youtube video. You can’t have the same youtube video in 2 places.
    how do I embed vimeo links into it?
    just add this markup inside the videogallery-con
     <p class="vplayer-tobe" data-videoTitle='Vimeo video' data-type="vimeo" data-src="31539657"><p class="menuDescription"><img src="http://dummyimage.com/50x50/000000/fff&text=thumb" class="imgblock"/><p class="the-title">This is an Vimeo video</p>The thumbnail can autogenerate...</p></p> 
    Change the data-src value with the id of your vimeo video
    Can this be used for videos that are NOT in Vimeo or YouTube? I have some videos hosted on a server I’d like to link to directly. Please let me know asap. thx
    Sure, it’s made specifically for playing self hosted videos. YouTube and Vimeo are just a bonus.
    How do I get the social media icons to work?
    check the shareCode setting for the vGallery function
    How do I make my video properly encoded to use within this gallery ?

    You need your movie converted to 2 formats in order to make sure the html5 video plays in all browsers

    Browser support & recommended encoding program

    IE9, IE8 ( Flash ) & Safari : M4V -> http://handbrake.fr/

    Chrome & Opera & Firefox : OGG-> http://video.online-convert.com/convert-to-ogg

    Video DOM structure

     <p class="vplayer" data-description="My Video" data-img="img/1.jpg"> <video controls preload> <source src="video/myvideo.m4v"/> <source src="video/myvideo.ogg"/> <object type="application/x-shockwave-flash" data="preview.swf" width="550" height="300" id="flashcontent" style="visibility: visible;"> <param name="movie" value="preview.swf"><param name="menu" value="false"><param name="allowScriptAccess" value="always"> <param name="scale" value="noscale"><param name="allowFullScreen" value="true"><param name="wmode" value="opaque"> <param name="flashvars" value="video=video/myvideo.m4v"> </object> </video> </p> 

     

    I have my video ready, how do I add it whitin the gallery ?

    Best way to learn that if you are not consistent with html is by example. Open source/index.html and around line 122 you will see:

    [ .. ] <p class=”vplayer” data-description=”<img src=’img/thumb.png’ class=’imgblock’/>Video 5” data-img=”img/1.jpg”>

    <video controls preload> <source src=”video/test.mp4” type=’video/mp4; codecs=”avc1.42E01E, mp4a.40.2”’/> <source src=”video/test.webm” type=’video/webm; codecs=”vp8, vorbis”’/> <source src=”video/test.ogg” type=’video/ogg; codecs=”theora, vorbis”’/> <source src=”video/bubbles.m4v”/> <object width=”500” height=”300”> <param name=”movie” value=”preview.swf?video=video/advideo.flv”></param> <param name=”allowFullScreen” value=”true”></param> <param name=”allowscriptaccess” value=”always”></param> <param name=”wmode” value=”opaque”></param> <embed src=”preview.swf?video=video/advideo.flv” type=”application/x-shockwave-flash” width=”500” height=”300” allowscriptaccess=”always” allowfullscreen=”true” wmode=”opaque”> </embed> </object> </video> </p> </p><!-END VIDEO GALLERY->

    This represents the last video in the gallery, and it’s a good example so let’s clone that and name it Video 6 instead of Video 5

    [ .. ] <p class=”vplayer” data-description=”<img src=’img/thumb.png’ class=’imgblock’/>Video 5” data-img=”img/1.jpg”>

    <video controls preload> <source src=”video/test.mp4” type=’video/mp4; codecs=”avc1.42E01E, mp4a.40.2”’/> <source src=”video/test.webm” type=’video/webm; codecs=”vp8, vorbis”’/> <source src=”video/test.ogg” type=’video/ogg; codecs=”theora, vorbis”’/> <source src=”video/bubbles.m4v”/> <object width=”500” height=”300”> <param name=”movie” value=”preview.swf?video=video/advideo.flv”></param> <param name=”allowFullScreen” value=”true”></param> <param name=”allowscriptaccess” value=”always”></param> <param name=”wmode” value=”opaque”></param> <embed src=”preview.swf?video=video/advideo.flv” type=”application/x-shockwave-flash” width=”500” height=”300” allowscriptaccess=”always” allowfullscreen=”true” wmode=”opaque”> </embed> </object> </video> </p> <p class=”vplayer” data-description=”<img src=’img/thumb.png’ class=’imgblock’/>Video 6” data-img=”img/1.jpg”>

    <video controls preload> <source src=”video/test.mp4” type=’video/mp4; codecs=”avc1.42E01E, mp4a.40.2”’/> <source src=”video/test.webm” type=’video/webm; codecs=”vp8, vorbis”’/> <source src=”video/test.ogg” type=’video/ogg; codecs=”theora, vorbis”’/> <source src=”video/bubbles.m4v”/> <object width=”500” height=”300”> <param name=”movie” value=”preview.swf?video=video/advideo.flv”></param> <param name=”allowFullScreen” value=”true”></param> <param name=”allowscriptaccess” value=”always”></param> <param name=”wmode” value=”opaque”></param> <embed src=”preview.swf?video=video/advideo.flv” type=”application/x-shockwave-flash” width=”500” height=”300” allowscriptaccess=”always” allowfullscreen=”true” wmode=”opaque”> </embed> </object> </video> </p> </p><!-END VIDEO GALLERY->

     

    FIY, this gallery is created by the author of the best-selling, most-featured stock gallery on the internet which receives constant updates (more then 10 so far)
  • Download LinkHTML5 Blue Video ..

    Related produck This user:ZoomIt

    Scroller Gallery 2 - Recent Posts Teaser WordPress - CodeCanyon Item for Sale ZoomBox 2 - The Photographer's Premium Lightbox - CodeCanyon Item for Sale ZoomFolio - jQuery Portfolio Plugin - CodeCanyon Item for Sale ZoomSounds - neat HTML5 Audio Player - CodeCanyon Item for Sale WooCommerce Product Showcase DZS - CodeCanyon Item for Sale ZoomFolio - WordPress Portfolio Plugin - CodeCanyon Item for Sale ZoomFlow - Banner Rotator / Teaser - CodeCanyon Item for Sale

    More items by ZoomIt

    No comments:

    Post a Comment