0

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


        });
4

1 回答 1

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 '&nbsp;';
                },
                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;
        });


    });
于 2013-04-30T12:59:37.390 回答