0

我设计了一个网页,左边有一个 div 元素,中间有 iframe,右边有另一个 iframe。

1.在中心 iframe 中,我在单击这些图像时加载缩略图图像,灯箱插件被调用,并且必须在整个文档上显示更大的图像(背景模糊)。

2.我面临的问题是灯箱插件加载在中心 iframe 内,而不是在整个文档中(如在许多社交网站中)。

3.我从网上下载了灯箱插件并在我的网页中使用

4.我希望图像在灯箱的帮助下显示在整个文档中。

任何帮助是极大的赞赏

这是我写的代码片段

<!--this code is written in home page-->
<div>
<ul>
        <li><a href="http://localhost/php/image.php?category=sea" target="description" class="underline">SEA</a></li>
        <li><a href="http://localhost/php/image.php?category=ANIMALS" target="description" class="underline">ANIMALS &amp; BIRDS</a></li>
        <li><a href="http://localhost/php/image.php?category=plants" target="description" class="underline">plants</a></li>
     <li><a href="http://localhost/php/image.php?category=Tourism" target="description" class="underline">Tourism</a></li>
<ul>
</div> 
<filedset><iframe name="description" width="725px" height="800px" align="left" frameborder="0" id="description"></iframe></fieldset>
<fieldset>
<iframe name="info" width="300px" height="380px" frameborder="0" src="UserInformation.php" id="iframeid"><!--logged in user's information-->
</iframe>
</fieldset>
<!--this code is written in image.php file-->
<head>
//calling JQUERY LIGHT BOX PLUGIN HERE ON clicking an image displayed in this page(within iframe name="description")
<script type="text/javascript" src="../js/jquery.js"></script>
<script type="text/javascript" src="../js/jquery.lightbox-0.5.js"></script>
<link rel="stylesheet" type="text/css" href="../css/jquery.lightbox-0.5.css" media="screen" />
<script type="text/javascript">
    $(function() {
        $('#gallery a').lightBox();
    });
    </script>
</head>

谢谢。

4

1 回答 1

0

我已经解决了我所面临的问题,here

http://www.dynamicdrive.com/forums/archive/index.php/t-19051.html

于 2012-05-03T09:05:03.620 回答