0

我将Supersized jQuery 插件用于图片库。

如何从外部页面链接到超大画廊中的特定图像?

这是我来自 jquery 页面的代码:

jQuery(函数($){

 $.supersized({

slideshow:   1, 
autoplay: 0,            
start_slide : document.write (location
                                .hash
                                .replace(/^#/,'')
                                  .replace(/im=([0-9]+).*$/,'$1')),

stop_loop: 0,           
random: 0,

....etc......
slide_links:'num',
thumb_links:1,
thumbnail_navigation:0,
slides:[

{图片:'photos/BE_oct14-4.jpg',标题:'slide0',拇指:'',网址:''},{图片:'photos/cinqueterre-4.jpg',标题:'slide1',拇指:'',网址:''},

以及来自外部 html 页面的链接:< href="photos.html#im=3>

4

1 回答 1

1

您可以在将本地图片添加到幻灯片数组时添加外部图片:

slides : [
    {image : 'http://externalURL/pic01.jpg', title : 'pic01', thumb : 'http://externalURL/pic01T.jpg', url : 'http://anyUrl'},
    {image : 'http://externalURL/pic02.jpg', title : 'pic02', thumb : 'http://externalURL/pic02T.jpg', url : 'http://anyUrl'},
    {image : 'localPath/pic01.jpg', title : 'pic01_l', thumb : 'localPath/pic01T.jpg', url : 'http://anyUrl'}
]
于 2013-03-06T23:26:35.520 回答