【发布时间】:2013-04-30 12:35:36
【问题描述】:
我有问题。我有一个页面http://www.hmaloha.com/bionutrient.php,当单击播放按钮时,视频会在fancybox iframe 上播放,并且在视频加载时徽标位于顶部。现在我需要添加一个指向该徽标的链接。我一直在尝试更改fancybox 代码,但没有运气。有什么帮助吗?
$(document).ready(function(){
$('#malohaStory').click(function(){
$.fancybox({
overlayOpacity: 1,
overlayColor: '#bbb',
padding : 0,
autoScale : false,
transitionIn : 'none',
transitionOut : 'none',
titleShow : true,
titlePosition : 'float', // 'float', 'outside', 'inside' or 'over'
titleFormat : function(){
return ' ';
},
type: 'iframe',
href: 'http://hmaloha.com/js/flowplayer/video/index.html',
height: 545,
width: 920,
swf : {
wmode : 'transparent',
allowfullscreen : 'true'
}
});
return false;
});
});
【问题讨论】:
-
我猜你已经把它整理好了,不是吗?