PrettyPhoto画廊中的最后一张图片首先加载

时间:2012-04-18 14:40:04

标签: javascript jquery plugins prettyphoto portfolio

http://2012.delineamultimedia.com/#home_portfolio

如果您单击悬停在BRIAN GUEHRING画廊上方时跳转的图标。您将激活prettyPhoto弹出库。出于某种原因,它从图库中的最后一个图像开始。有没有办法解决这个问题,所以它从图库中的第一个图像开始?

<script type="text/javascript" charset="utf-8">
$(document).ready(function(){
    $("a[rel^='prettyPhoto']").prettyPhoto();
});
</script>

这是我用来启动prettyPhoto的脚本,我害怕另一个脚本可能会以某种方式搞砸了。

提前感谢您的时间!对此,我真的非常感激!

1 个答案:

答案 0 :(得分:0)

是的,围绕所有图像,但第一个图像强制第一个图像为1 / x,带有div标签的图库中的后续图像按照代码中列出的顺序显示...如果有更好的解决方案我很乐意听到它......这是我的示例代码:

    <div class="mask">  
    <a class="icon-image"
    href="../../images/Murals/Residential/GreekBath/GREEK_BATH_514X685.png"
    rel="GreekBath[gallery]"
    title="Flower Vase Detail">
    <i class="icon-search"></i>
    </a>
    <div style="display:none;">
    <a class="icon-image"
    href="../../images/Murals/Residential/GreekBath/FLOWER_VASE.png"
    rel="GreekBath[gallery]"
    title="Toilette">
    <i class="icon-search"></i>
    </a>
    </div>
    <div style="display:none;">
    <a class="icon-image"       
    href="../../images/Murals/Residential/GreekBath/TOILETTE.png"
    rel="GreekBath[gallery]"
    title="Greek Bathroom">
    <i class="icon-search"></i>
    </a>
    </div>
    </div>