我正在使用 Fancybox 1.3.4 版。我正在尝试使用 Fancybox 在我的图片库底部包含一个图像计数器(Y 的图像 X)和一个“关闭 X”按钮。我已经阅读了几篇试图解决这个问题的帖子,并且我已经根据提供的答案更改了我的代码,但我似乎仍然无法正确编码这个问题。
这是我已更正的代码:
<script type="text/javascript">
$(document).ready(function() {
$("a[rel=gallery]").fancybox({
'transitionIn' : 'fade',
'transitionOut' : 'fade',
'titlePosition' : 'inside',
'titleFormat' : function(title, currentArray, currentIndex, currentOpts) {
return '<div id="gallery-title">Image ' + (currentIndex + 1) + ' of ' + currentArray.length + (title.length ? ' ' + title : '') + '</span>';
}
});
和
<div id="gallery">
<a rel="gallery" href="images/MapDesignImageGallery/full/1.png" title="First Bulgarian Tsardom (Advanced Cartography/GIS Map of the Year)***PUBLISHED***" id="image1">
<img src="images/MapDesignImageGallery/thumbnails/1.jpg" width="150" height="185" /> </a>
任何意见是极大的赞赏。谢谢。