画廊未清除标题
我正在使用 Galleria 并将其扩展为显示根据图像 alt 属性创建的标题。它效果很好,但是如果我选择在一张图像上没有标题,则之前图像的标题仍然可见,我还注意到 Galleria 信息容器,我从中获取标题;如果 alt 属性为空,则不会更新。
有什么办法可以纠正这个问题吗?
这是我的代码。
jQuery("body").find('.galleria').galleria({
autoplay: false,
image_crop: false, // crop all images to fit
thumb_crop: false, // crop all thumbnails to fit
image_position: 'top left',
transition: 'fade', // crossfade photos
transition_speed: 700, // slow down the crossfade
show_counter: false, // crossfade photos
extend: function() {
this.bind(Galleria.IMAGE, function(e) {
var caption = this.$('info-description').html();
//alert(caption)
if(this.$('info-description').html() == ""){
jQuery("body").find('.caption').html();
}else{
jQuery("body").find('.caption').html(this.$('info-description').html());
}
})
}
});//end galleria
我知道这是专门的,但之前肯定有人遇到过这个问题。任何建议都会很棒。
一切顺利 塔拉
I am using Galleria and extending it to show the caption's created from image alt attributes. It works great, however if I choose to have no caption on one image, the caption from the image before is still visible, I notice also that the Galleria info container, where I get my captions from; doesn't update if the alt attribute is empty.
Is there any way to rectify this?
Here is my code.
jQuery("body").find('.galleria').galleria({
autoplay: false,
image_crop: false, // crop all images to fit
thumb_crop: false, // crop all thumbnails to fit
image_position: 'top left',
transition: 'fade', // crossfade photos
transition_speed: 700, // slow down the crossfade
show_counter: false, // crossfade photos
extend: function() {
this.bind(Galleria.IMAGE, function(e) {
var caption = this.$('info-description').html();
//alert(caption)
if(this.$('info-description').html() == ""){
jQuery("body").find('.caption').html();
}else{
jQuery("body").find('.caption').html(this.$('info-description').html());
}
})
}
});//end galleria
I know this is specialised but someone is bound to have come across this problem before. Any suggestions would be amazing.
All the best
Tara
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试在设置标题时添加空字符串:
如果
html(..)< 中未指定字符串/code>
然后它返回该值而不是设置它。
Try adding an empty string when you set the caption:
If no string is specified in
html(..)
then it returns the value instead of setting it.