Hello,
The problem is, that this video light box gallery is generated by software from the url you have mentioned, but it can be simulated by adding all important javascripts, css stylesheets and html code from a gallery located on - for example - this page
http://videolightbox.com/android-template.html. If you display the source code of the previous page, you can see, that there are some javascripts and css styles. These files need to be placed also on your page (head html code web part):
<link rel="stylesheet" type="text/css" href="~/css/overlay-minimal.css">
<script src="~/js/jquery.tools.min.js" type="text/javascript"></script>
<script src="~/js/swfobject.js" type="text/javascript"></script>
<script src="~/js/videolightbox.js" type="text/javascript"></script>
One of those scripts opens videos in the
div element with the voverlay
id, so this
div element has to be contained on the page (static text web part):
<div style="background-image: none; top: 87.5px; left: 281.5px; position: fixed; z-index: 10000; display: none;" id="voverlay"><a class="close"></a><div id="vcontainer"></div></div>
Every single video needs its own exact link code (transformation code):
<p>
<a rel="#voverlay" href='<%# Eval("URL") %>?autoplay=1&rel=0&enablejsapi=1&playerapiid=ytplayer' title='<%# Eval("URLTitle") %>'><img src='<%# Eval("URLImagePath") %>' alt='<%# Eval("URLImageName") %>' /></a>
</p>
And finally, you need to fill the
Content Before and
After properties of the repeater, which uses the transformation above with:
Content Before: <div id="videogallery">
Content After: </div>
Best regards,
Jan Hermann