|
|
|
@ -7,7 +7,7 @@
|
|
|
|
|
</summary>
|
|
|
|
|
<carousel ref="carousel" :centerMode="true" :loop="false" :per-page="1" :paginationPosition="'bottom-overlay'" paginationActiveColor="#3897f0" paginationColor="#dbdbdb">
|
|
|
|
|
<slide v-for="(img, index) in status.media_attachments" :key="'px-carousel-'+img.id + '-' + index" class="w-100 h-100 d-block mx-auto text-center" :title="img.description">
|
|
|
|
|
<img :class="img.filter_class + ' img-fluid'" :src="img.url" :alt="img.description" onerror="this.onerror=null;this.src='/storage/no-preview.png'">
|
|
|
|
|
<img :class="img.filter_class + ' img-fluid'" :src="img.url" :alt="altText(img)" onerror="this.onerror=null;this.src='/storage/no-preview.png'">
|
|
|
|
|
</slide>
|
|
|
|
|
</carousel>
|
|
|
|
|
</details>
|
|
|
|
@ -15,7 +15,7 @@
|
|
|
|
|
<div v-else class="w-100 h-100 p-0">
|
|
|
|
|
<carousel ref="carousel" :centerMode="true" :loop="false" :per-page="1" :paginationPosition="'bottom-overlay'" paginationActiveColor="#3897f0" paginationColor="#dbdbdb" class="p-0 m-0">
|
|
|
|
|
<slide v-for="(img, index) in status.media_attachments" :key="'px-carousel-'+img.id + '-' + index" class="" style="background: #000; display: flex;align-items: center;" :title="img.description">
|
|
|
|
|
<img :class="img.filter_class + ' img-fluid w-100 p-0'" style="" :src="img.url" :alt="img.description" onerror="this.onerror=null;this.src='/storage/no-preview.png'">
|
|
|
|
|
<img :class="img.filter_class + ' img-fluid w-100 p-0'" style="" :src="img.url" :alt="altText(img)" onerror="this.onerror=null;this.src='/storage/no-preview.png'">
|
|
|
|
|
</slide>
|
|
|
|
|
</carousel>
|
|
|
|
|
</div>
|
|
|
|
@ -52,6 +52,15 @@
|
|
|
|
|
this.$refs.carousel.goToPage(0);
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
altText(img) {
|
|
|
|
|
let desc = img.description;
|
|
|
|
|
if(desc) {
|
|
|
|
|
return desc;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 'Photo was not tagged with any alt text.';
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
keypressNavigation(e) {
|
|
|
|
|
let ref = this.$refs.carousel;
|
|
|
|
|
if (e.keyCode == "37") {
|
|
|
|
|