画廊未清除标题

发布于 2024-12-06 11:34:50 字数 1334 浏览 1 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

爱你是孤单的心事 2024-12-13 11:34:50

尝试在设置标题时添加空字符串:

jQuery("body").find('.caption').html('');

如果 html(..)< 中未指定字符串/code>然后它返回该值而不是设置它。

Try adding an empty string when you set the caption:

jQuery("body").find('.caption').html('');

If no string is specified in html(..) then it returns the value instead of setting it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文