How i can put the video showing image in front of image using jQuery css in html? -
as example need put image in center of image http://www.press75.com/themes/video-elements-theme-demo/
on web-page code check page exist video or not if yes wrap image anchor tag
<img src="myimage" alt=""/> if image found it's goes like
<a href="embedelink" id="videofound"> <img src="myimage" alt=""/></a> now if link open open fancybox show video in it. have problem can show me css it's show play image in middle of image demo shows.
how can put css no problem come. in m case image bigger height="367" width="550"
can somone show me css that.
thanks
if using jquery have @ http://fancybox.net/
code extract http://fancybox.net/howto
$(document).ready(function() { /* basic - uses default settings */ $("a#single_image").fancybox(); /* using custom settings */ $("a#inline").fancybox({ 'hideoncontentclick': true }); /* apply fancybox multiple items */ $("a.group").fancybox({ 'transitionin' : 'elastic', 'transitionout' : 'elastic', 'speedin' : 600, 'speedout' : 200, 'overlayshow' : false }); });
Comments
Post a Comment