This commit is contained in:
ken 2026-07-27 19:45:46 +08:00
parent 56a06c3f83
commit f63896c894
1 changed files with 15 additions and 1 deletions

View File

@ -15,4 +15,18 @@
</div>
</div>
</div>
</div>
</div>
<script>
setTimeout(function() {
var albumTitle = $('.show-title span').text().trim();
$('.show-content').each(function(index) {
var $img = $(this).find('img');
if ($img.attr('alt') === 'gallery image') {
$img.attr('alt', albumTitle + (index + 1));
}
});
}, 500);
</script>