mobile tweaks for carousel
This commit is contained in:
parent
04463b3083
commit
686da07260
2 changed files with 11 additions and 0 deletions
|
@ -24,6 +24,9 @@
|
||||||
display: flex
|
display: flex
|
||||||
flex-direction: row
|
flex-direction: row
|
||||||
|
|
||||||
|
.p-carousel-item
|
||||||
|
display: flex
|
||||||
|
|
||||||
.p-carousel-indicator-list
|
.p-carousel-indicator-list
|
||||||
display: flex
|
display: flex
|
||||||
flex-direction: row
|
flex-direction: row
|
||||||
|
|
|
@ -51,6 +51,13 @@ const currentSelection = defineModel('currentSelection', { type: Number, default
|
||||||
const currentUrl = computed(() => (resolved.value as GalleryEntryWithVariants).variants[currentSelection.value].url)
|
const currentUrl = computed(() => (resolved.value as GalleryEntryWithVariants).variants[currentSelection.value].url)
|
||||||
const currentAlt = computed(() => (resolved.value as GalleryEntryWithVariants).variants[currentSelection.value].alternativeText)
|
const currentAlt = computed(() => (resolved.value as GalleryEntryWithVariants).variants[currentSelection.value].alternativeText)
|
||||||
const currentCaption = computed(() => (resolved.value as GalleryEntryWithVariants).variants[currentSelection.value].caption)
|
const currentCaption = computed(() => (resolved.value as GalleryEntryWithVariants).variants[currentSelection.value].caption)
|
||||||
|
const carouselResponsiveOptions = [
|
||||||
|
{
|
||||||
|
breakpoint: '800px',
|
||||||
|
numVisible: 3,
|
||||||
|
numScroll: 1,
|
||||||
|
},
|
||||||
|
]
|
||||||
|
|
||||||
const onVariantSelected = (event: Event, id: number) => {
|
const onVariantSelected = (event: Event, id: number) => {
|
||||||
currentSelection.value = id
|
currentSelection.value = id
|
||||||
|
@ -86,6 +93,7 @@ onMounted(async () => {
|
||||||
:value='variants'
|
:value='variants'
|
||||||
:numVisible='5'
|
:numVisible='5'
|
||||||
:numScroll='5'
|
:numScroll='5'
|
||||||
|
:responsiveOptions='carouselResponsiveOptions'
|
||||||
)
|
)
|
||||||
template(
|
template(
|
||||||
#item='slotProps'
|
#item='slotProps'
|
||||||
|
|
Loading…
Add table
Reference in a new issue