我试着做这个教程:http ://www.webtoolkit.info/add-picasa-gallery-to-your-blog-or-website.html#more-418
我成功了,但是如何使用 Highslide(http://highslide.com)打开这些图片?现在图片在新窗口中打开,它们也不是全尺寸图片。
我试着做这个教程:http ://www.webtoolkit.info/add-picasa-gallery-to-your-blog-or-website.html#more-418
我成功了,但是如何使用 Highslide(http://highslide.com)打开这些图片?现在图片在新窗口中打开,它们也不是全尺寸图片。
根据 Highslide JS 文档标记每个图像:
<a href="images/full-image.jpg" class="highslide" onclick="return hs.expand(this)">
<img src="images/thumbnail.jpg" alt="Highslide JS" title="Click to enlarge" height="120" width="107" /></a>
修改picasa.js
以包含以上行而不是此行中附加的内容:
jQuery('#' + this.containerId).append('<div onClick="document.location.href=\''+this.itemsArray[x].media$group.media$content[0].url+'\'" class="picasaGalleryItem" style="cursor: pointer; width: ' + this.imageSize + 'px; height: ' + this.imageSize + 'px; background: url(' + this.itemsArray[x].media$group.media$thumbnail[0].url + ') no-repeat center center; "></div>');
这给了你:
jQuery('#' + this.containerId).append('<a href="' + this.itemsArray[x].media$group.media$content[0].url + '" class="highslide" onclick="return hs.expand(this)">
<img src="' + this.itemsArray[x].media$group.media$thumbnail[0].url + '" alt="Highslide JS" title="Click to enlarge" height="120" width="107" /></a>');