|
|
@ -1,6 +1,7 @@
|
|
|
|
<template>
|
|
|
|
<template>
|
|
|
|
<Swiper
|
|
|
|
<Swiper
|
|
|
|
:autoHeight="true"
|
|
|
|
:autoHeight="true"
|
|
|
|
|
|
|
|
:loop="true"
|
|
|
|
:spaceBetween="30"
|
|
|
|
:spaceBetween="30"
|
|
|
|
:centeredSlides="true"
|
|
|
|
:centeredSlides="true"
|
|
|
|
:autoplay="{
|
|
|
|
:autoplay="{
|
|
|
@ -11,12 +12,21 @@
|
|
|
|
clickable: true,
|
|
|
|
clickable: true,
|
|
|
|
}"
|
|
|
|
}"
|
|
|
|
:navigation="true"
|
|
|
|
:navigation="true"
|
|
|
|
|
|
|
|
:style="{
|
|
|
|
|
|
|
|
'--swiper-navigation-color': 'rgb(71 85 105)',
|
|
|
|
|
|
|
|
'--swiper-pagination-color': 'rgb(71 85 105)',
|
|
|
|
|
|
|
|
'--swiper-pagination-bottom': 'auto',
|
|
|
|
|
|
|
|
'--swiper-pagination-top': '1rem',
|
|
|
|
|
|
|
|
'--swiper-navigation-top-offset': '5rem'
|
|
|
|
|
|
|
|
}"
|
|
|
|
:modules="[SwiperAutoplay, SwiperPagination, SwiperNavigation]"
|
|
|
|
:modules="[SwiperAutoplay, SwiperPagination, SwiperNavigation]"
|
|
|
|
>
|
|
|
|
>
|
|
|
|
|
|
|
|
|
|
|
|
<SwiperSlide v-for="image in gallery">
|
|
|
|
<SwiperSlide v-for="image in gallery" class="p-10 bg-zinc-100">
|
|
|
|
|
|
|
|
<div class="place-items-center">
|
|
|
|
<nuxt-img :src="'https://unboundedpress.org/api/' + bucket + '.files/' + image.image_id + '/binary'"
|
|
|
|
<nuxt-img :src="'https://unboundedpress.org/api/' + bucket + '.files/' + image.image_id + '/binary'"
|
|
|
|
quality="50"/>
|
|
|
|
quality="50"/>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</SwiperSlide>
|
|
|
|
</SwiperSlide>
|
|
|
|
</Swiper>
|
|
|
|
</Swiper>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|