1
afterContent functunalityを使用して、ギャラリーにキャプションを追加します。featherlight gallery afterContentへのリンクの追加方法
<script>
$(document).ready(function(){
$('.all-imgs').featherlightGallery({
filter: ".img-box-img a",
afterContent: function() {
var caption = this.$currentTarget.find('img').attr('data-caption');
this.$instance.find('.caption').remove();
$('<div class="caption">').text(caption).appendTo(this.$instance.find('.featherlight-content'));
},
variant: "featherlight-gallery2",
});
});
</script>
はどのようにブラウザがリンクとしてそれらをレンダリングするようにimg
要素内のリンクdata-caption
属性をエスケープする必要がありますか?
私の使用目的は、ギャラリーにフルサイズの画像へのリンクを追加することです。
おかげ