我有个问题。我有一个页面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;
});
});