mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 00:34:50 +00:00
PhotoAlbumPresenter
This commit is contained in:
parent
8ba6506a6a
commit
9f65e4bab1
1 changed files with 15 additions and 3 deletions
|
@ -6,9 +6,9 @@
|
||||||
<p class="font-weight-light">(click to show)</p>
|
<p class="font-weight-light">(click to show)</p>
|
||||||
</summary>
|
</summary>
|
||||||
<b-carousel :id="status.id + '-carousel'"
|
<b-carousel :id="status.id + '-carousel'"
|
||||||
|
v-model="cursor"
|
||||||
style="text-shadow: 1px 1px 2px #333;"
|
style="text-shadow: 1px 1px 2px #333;"
|
||||||
controls
|
controls
|
||||||
indicators
|
|
||||||
background="#ffffff"
|
background="#ffffff"
|
||||||
:interval="0"
|
:interval="0"
|
||||||
>
|
>
|
||||||
|
@ -17,14 +17,17 @@
|
||||||
<img class="img-fluid" style="max-height: 600px;" :src="img.url" :alt="img.description" :title="img.description">
|
<img class="img-fluid" style="max-height: 600px;" :src="img.url" :alt="img.description" :title="img.description">
|
||||||
</div>
|
</div>
|
||||||
</b-carousel-slide>
|
</b-carousel-slide>
|
||||||
|
<span class="badge badge-dark box-shadow" style="position: absolute;top:10px;right:10px;">
|
||||||
|
{{cursor + 1}} / {{status.media_attachments.length}}
|
||||||
|
</span>
|
||||||
</b-carousel>
|
</b-carousel>
|
||||||
</details>
|
</details>
|
||||||
</div>
|
</div>
|
||||||
<div v-else>
|
<div v-else>
|
||||||
<b-carousel :id="status.id + '-carousel'"
|
<b-carousel :id="status.id + '-carousel'"
|
||||||
|
v-model="cursor"
|
||||||
style="text-shadow: 1px 1px 2px #333;"
|
style="text-shadow: 1px 1px 2px #333;"
|
||||||
controls
|
controls
|
||||||
indicators
|
|
||||||
background="#ffffff"
|
background="#ffffff"
|
||||||
:interval="0"
|
:interval="0"
|
||||||
>
|
>
|
||||||
|
@ -33,12 +36,21 @@
|
||||||
<img class="img-fluid" style="max-height: 600px;" :src="img.url" :alt="img.description" :title="img.description">
|
<img class="img-fluid" style="max-height: 600px;" :src="img.url" :alt="img.description" :title="img.description">
|
||||||
</div>
|
</div>
|
||||||
</b-carousel-slide>
|
</b-carousel-slide>
|
||||||
|
<span class="badge badge-dark box-shadow" style="position: absolute;top:10px;right:10px;">
|
||||||
|
{{cursor + 1}} / {{status.media_attachments.length}}
|
||||||
|
</span>
|
||||||
</b-carousel>
|
</b-carousel>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
export default {
|
export default {
|
||||||
props: ['status']
|
props: ['status'],
|
||||||
|
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
cursor: 0
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
Loading…
Reference in a new issue