3

我是 js 新手,并试图在我的网站第一次加载时打开一个包含我的 facebook 粉丝页面的 fancybox iframe,但没有成功。我已经对fancybox中的js文件和标题部分中的适当css进行了所有调用我试图在索引页面中包含代码以便在页面加载时显示iframe但没有成功,iframe只是不显示. 这是我使用的代码:

<script type="text/javascript">
$(document).ready(function() {
    $(".iframe" ).fancybox({
        'width'             : '75%',
        'height'            : 440,
        'autoScale'         : false,
        'transitionIn'      : 'none',
        'transitionOut'     : 'none',
        'type'              : 'iframe',
        'href'              : "www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2Fpages%2FPalindrom%2F104421159704142&amp;width=600&amp;height=258&amp;colorscheme=dark&amp;show_faces=true&amp;border_color=%2399c844&amp;stream=false&amp;header=false&amp;appId=391204344279942"
    });
$(".iframe").eq(0).trigger('click');​        
});
</script>

<a id="iframe"></a>

解决了!多谢你们!设法使用 $.fancybox 打开它,而不需要锚点。这是我使用的代码,也许它会对 jquery 和 fancybox 的新手有所帮助(我还添加了一个延迟计时器):

<script type="text/javascript">
setTimeout(function() {
  // Do something after 5 seconds

$.fancybox({
    'width'             : 620,
    'height'            : 260,
    'autoScale'         : true,
    'transitionIn'      : 'fade',
    'transitionOut'     : 'elastic',
    'openEffect'        : 'fade',
    'closeEffect'       : 'elastic',
    'type'              : 'iframe',
    'href'              : "http://www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2Fpages%2FPalindrom%2F104421159704142&width=600&height=258&colorscheme=light&show_faces=true&border_color=%2399c844&stream=false&header=false&appId=391204344279942"
});
}, 5000);

4

2 回答 2

1

http://之前添加www呢?

所以这个选项

'href'  : "www.facebook.com/....

应该看起来像

'href'  : "http://www.facebook.com/...
于 2012-07-26T07:54:24.140 回答
0
<script>
$(document).ready(function() {
    $(".iframe" ).fancybox({ // .iframe - defined class here
        'width'             : '75%',
        'height'            : 440,
        'autoScale'         : false,
        'transitionIn'      : 'none',
        'transitionOut'     : 'none',
        'type'              : 'iframe',
        'href'              : "www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2Fpages%2FPalindrom%2F104421159704142&amp;width=600&amp;height=258&amp;colorscheme=dark&amp;show_faces=true&amp;border_color=%2399c844&amp;stream=false&amp;header=false&amp;appId=391204344279942"
    });
$(".iframe").eq(0).trigger('click');​        
});
</script>

<a id="iframe"></a> <!-- #iframe - defined an ID here -->

也许您可以尝试将 id 更改<a id="iframe"></a>为 class of<a class="iframe"></a>

JsFiddle 演示在这里

于 2012-07-26T08:34:45.803 回答