0

我是 JS 和 Ajax 的绝对新手,在经历了fancybox 和 colorbox 之后,我无法使用“prev”和“next”选项实现幻灯片放映,以在我试图在横幅下加载的 html 中导航的 iframe 之间导航.

在 fancybox 中,高度无法调整(尽管我尝试了各种选项,包括直接在 .fancybox-wrap 下使用 !important 编辑 jquery.fancybox.css 等

尽管它们与 css 位于同一文件夹下,但我永远无法使 prev 和 next 按钮正常工作

iframe 内容是具有(3 个不同).index html 的 panaromic flash 内容,我已经能够在 iframe 中加载一个,但是当尝试将多个 htmlfiles 加载为幻灯片放映或使用滚动上一个和下一个选项时,它不起作用. 下面是我的电话:

$(document).ready(function(){
    $("a.iframe").fancybox({
        'width' : 1000,
        'height' : 500,
        'autoScale' : false,
        'transitionIn' : 'none',
        'transitionOut' : 'none',
        'type' : 'iframe' 
    });
});

<!-- html code here -->

<a class="iframe" href="360/type1/example.html"><img src="images/type1.png" height="100" width="100"/></a>
<a class="iframe" href="360/type2/example.html"><img src="images/type2.png" height="100" width="100"/></a>
</body>
4

0 回答 0