对于我的网站,我使用的是 Pirobox extended v1.3,如下所示:
http://jquery.pirolab.it/pirobox/
但是,我无法关闭我的任何图像,并且当我单击图像(如果有的话,则在侧面)时,它们不会关闭。
我的网站和画廊可以使用这个链接找到:
http://photo.johnvas.com/portfolio-animals.php
我所有的脚本都可以在网站上找到,但为了方便起见,我将在此处提供相关的脚本:
http://photo.johnvas.com/scripts/js/pirobox_extended-1.3.js
http://photo.johnvas.com/styles/css_pirobox/style_8/style.css
我还在我的页面上使用以下 jQuery 脚本:
http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.js
http://photo.johnvas.com/scripts/js/jquery-ui-1.8.2.custom.min.js
最后,在每个页面上,我都有以下 Pirobox 脚本:
<script type="text/javascript">
$(document).ready(function() {
jQuery.easing.def = "easeInOutQuart";
$.pirobox_ext({
attribute: 'rel',
piro_speed : 700,
bg_alpha : .4,
resize : true,
zoom_mode : true,
move_mode : 'mousemove',
piro_scroll : false,
share: true
});
$('.source_code').hide();
$('.tabs li a').click(function(event){
event.preventDefault();
var tabs = $(this).attr('href');
$(this).parent('li').siblings('li').children('a').removeClass('active');
$(this).addClass('active');
if(!$(tabs).is(':visible')){
$(this).parent('li').parent('ul').parent('.section').find('.demo').fadeOut(0);
$(tabs).fadeIn(300);
}
});
});
</script>
如上所述,这些图像都不允许我关闭它们,但是它们确实曾经工作过,自从我上次访问该站点以来已经将近一年了,并且找不到解决问题的方法。