我有在灯箱中打开的图像,但我想当noimage.png可以在灯箱中查看时,它不应该在灯箱的视野中显示
这里是我网站的链接请打开最后的缩略图并查看下一张图片以了解.. Click here 我用于灯箱的脚本
<script type="text/javascript" src="LightBox/js/jquery.js"></script>
<script type="text/javascript" src="LightBox/js/jquery.lightbox-0.5.js"></script>
<script type="text/javascript">
$(function() {
$('#gallery a').lightBox(
{ overlayOpacity: 0.6,
imageLoading: 'LightBox/images/lightbox-ico-loading.gif',
imageBtnClose: 'LightBox/images/lightbox-btn-close.gif',
imageBtnPrev: 'LightBox/images/lightbox-btn-prev.gif',
imageBtnNext: 'LightBox/images/lightbox-btn-next.gif',
fixedNavigation: true,
txtImage: 'Image',
txtOf: 'of'
});
});
</script>
我试图完成这项任务
<script type="text/javascript">
function pageLoad() {
if ($("#gallery a[href$='noimage.png']")) {
$("#gallery a[href$='noimage.png'] img").removeAttr("src");
$("#gallery a[href$='noimage.png']").remove("#gallery img");
}
};
</script>
这可以隐藏灯箱中的特定图像,不应该在灯箱弹出视图中显示
答案 0 :(得分:1)
您可以使用类来标记要在灯箱中排除的图像,并且这些图像不会在灯箱中使用。
标记图像,然后使用此选择器初始化灯箱
<script type="text/javascript">
$(function() {
// Mark unwanted images
jQuery('#gallery a[href*="noimage.png"]').addClass("no-lightbox");
// Initialize lightbox without them
jQuery('#gallery a:not(.no-lightbox)').lightBox({
overlayOpacity: 0.6,
imageLoading: 'LightBox/images/lightbox-ico-loading.gif',
imageBtnClose: 'LightBox/images/lightbox-btn-close.gif',
imageBtnPrev: 'LightBox/images/lightbox-btn-prev.gif',
imageBtnNext: 'LightBox/images/lightbox-btn-next.gif',
fixedNavigation: true,
txtImage: 'Image',
txtOf: 'of'
});
});
</script>
答案 1 :(得分:0)
理想情况下,在渲染视图时,应检查是否为noimage.png
,然后不打印。