`
kirenenko04
  • 浏览: 146600 次
  • 性别: Icon_minigender_2
  • 来自: 上海
社区版块
存档分类
最新评论

Magento Use FancyBox to load YOUKU Video

 
阅读更多

to search the video swf url from web.

and then use these phtml to show video image and url link

 

<div class="image-box">
    <a class="fancybox image_gal" rel="iframeLink" href="<?php echo $item->getVideo();?>">
	   <img src="<?php echo $this->resizeImage($item->getFilename(), 365, 205, ''); ?>" alt="<?php   echo $item->getTitle(); ?>" />
    </a>
</div>
<div class="title">
     <a class="link_gal fancybox"  rel="iframeLink"  href="<?php echo $item->getVideo();?>"><?php   echo $item->getTitle(); ?></a>
</div>

 

and use jquery to load fancybox

<script type="text/javascript">
(function($){  
		$(".fancybox").click(function() {
			$.fancybox({
				'padding'		: 0,
				'autoScale'		: false,
				'transitionIn'	: 'none',
				'transitionOut'	: 'none',
				'title'			: this.title,
				'width'			: 640,
				'height'		: 385,
				'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
				'type'			: 'swf',
				'swf'			: {
				'wmode'				: 'transparent',
				'allowfullscreen'	: 'true'
				}
			});

			return false;
		});
})(jQuery);
</script>

 

 

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics