多个Photoswipe画廊移动

时间:2012-12-05 05:22:05

标签: jquery-mobile photoswipe

我从一个列表中有多个PhotoSwipe画廊,可以在桌面上完美运行,但只有第一个画廊在移动设备上显示其图像,而后续画廊则没有。 PhotoSwipe实例实例化,我可以使用箭头等导航,但没有图像..任何想法? (我尝试使用rel =“external”无效)

照片代码:

function startSwipe(btnId)
{
    var galleryName = btnId;    

(function(window, PhotoSwipe)
{
            var
                options = {
                    preventHide: false,
                    loop: false,
                    captionAndToolbarShowEmptyCaptions: false,
                    getImageSource: function(obj){
                        return obj.url;
                    },
                    getImageCaption: function(obj){
                        return obj.caption;
                    }
                },
                instance = PhotoSwipe.attach( 
                    [
                        { url: 'http://www.example.com/gallery/'+galleryName+'/images/0.jpg'},
                        { url: 'http://www.example.com/gallery/'+galleryName+'/images/1.jpg'},
                        { url: 'http://www.example.com/gallery/'+galleryName+'/images/2.jpg'},

                    ], 
                    options 
                );
                instance.show(0);
    }(window, window.Code.PhotoSwipe));
}   

和jqm:

<div data-role="content">
<ul data-role="listview" data-theme="a" class="centerLiPort">
    <li id="gal1" onClick="startSwipe(this.id)">
        <div  class="imgDiv"><img src="images/gal1.jpg" ></img></div>
        <a>Gallery 1</a> 
    </li>

    <li id="gal2" onClick="startSwipe(this.id)">
        <div class="imgDiv"><img src="images/gal2.jpg" ></img></div>
        <a>Gallery 2</a>
    </li>

    <li id="gal3" onClick="startSwipe(this.id)">
        <div class="imgDiv" ><img src="images/gal3.jpg" ></img></div>
        <a>Gallery 3</a> 
    </li>
</ul>
</div><!--/content-->

1 个答案:

答案 0 :(得分:1)

我无法解决这个问题,我发现的唯一工作就是将图像库复制到子域目录中,这些目录确实很糟糕,但它确实有效。错误在于IOS如何处理图像链接 - 因为它在桌面和其他移动设备上运行得非常好。