16 lines
807 B
HTML
16 lines
807 B
HTML
{% macro image_carousel(id, thumbnails) %}
|
|
<div id="{{ id }}" class="carousel relative shadow-lg w-full max-w-full md:max-w-[50hw] h-[40rem]">
|
|
<div class="relative w-full h-full overflow-hidden carousel-inner">
|
|
{% for thumbnail in thumbnails %}
|
|
<div class="absolute inset-0 w-full h-full transition-opacity duration-500 ease-in-out carousel-item delay-250">
|
|
<img alt="slide" src="{{ thumbnail }}" class="object-scale-down w-full h-full">
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
<div class="absolute bottom-0 z-50 flex justify-center w-full gap-2 py-2">
|
|
{% for thumbnail in thumbnails %}
|
|
<button class="carousel-button" data-target="{{ loop.index0 }}">•</button>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
{% endmacro image_carousel %} |