父页面中的Fancybox iframe库

时间:2013-01-19 17:08:59

标签: fancybox

  

可能重复:
  call Fancybox in parent from iframe

您好我的主页上有iframe。里面是一个画廊,当我点击fancybox图片时,我想在我的父页面中打开图片。我尝试了任何东西,但它只打开了一张图片,没有带有下一个和上一个按钮的完整图库。

我的例子:

index.html

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <meta http-equiv="imagetoolbar" content="no" />
    <title>FancyBox 1.3.4 | Demonstration</title>
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script>
    <script>
        !window.jQuery && document.write('<script src="jquery-1.4.3.min.js"><\/script>');
    </script>
    <script type="text/javascript" src="./fancybox/jquery.mousewheel-3.0.4.pack.js"></script>
    <script type="text/javascript" src="./fancybox/jquery.fancybox-1.3.4.pack.js"></script>
    <link rel="stylesheet" type="text/css" href="./fancybox/jquery.fancybox-1.3.4.css" media="screen" />
    <link rel="stylesheet" href="style.css" />

    <script type="text/javascript">
        function readyFancy(){
            $("a#sample").trigger("click");
        }
        function callMe(site){ 
            $("#sample").fancybox({
                'transitionIn'      : 'none',
                'transitionOut'     : 'none',
                'href'              : ''+site+'',
                'autoScale'          : true,
                'onStart'           : function(){$("body").css({'overflow':'hidden'});},
                'onClosed'          : function(){$("body").css({"overflow":"visible"});}
            });
        readyFancy();
        }
    </script>

</head>
<body style="padding: 20px;">
<a href="#" id="sample"></a> <!-- here we set a decoy link for the frame to be triggered-->
<p>Below is an iframe</p>
<iframe src="sample.html" width="300" height="200"> <!--the link of the iframe-->
</body>
</html>

sample.html

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
</head>
<body >
<div>
<a onClick="parent.callMe('http://localhost/fan/1_b.jpg');" href="#" ><img src="1_s.jpg"></a>
<a onClick="parent.callMe('http://localhost/fan/2_b.jpg');" href="#" ><img src="2_s.jpg"></a>
</div>
</body>
</html>

1 个答案:

答案 0 :(得分:1)

如果您使用ID作为选择器$("#selector").fancybox();,请切换到班级 - $(".selector").fancybox();