我有问题。我有一个页面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;
});
});
答案 0 :(得分:0)
在$.fancybox()
来电中,请添加beforeLoad
方法,如下所示,使用url
更改我的示例链接:
beforeLoad: function() {
this.title = '<a href="http://www.example.com/link.html">' + this.title + '</a>';
}
所以你的最终代码(如果你保留了上面的所有内容,虽然我不知道你的titleFormat
函数在做什么)看起来像这样:
$(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'
}
beforeLoad: function() {
this.title = '<a href="http://www.example.com/link.html">' + this.title + '</a>';
}
});
return false;
});
});