better indication of non-autoplay gifs
This commit is contained in:
parent
b3263e528f
commit
d4e48ac6fa
|
@ -26,15 +26,21 @@
|
||||||
on:imgLoadError="set({imageError: true})"
|
on:imgLoadError="set({imageError: true})"
|
||||||
/>
|
/>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
<PlayVideoIcon className="{{playing ? 'hidden' : ''}}"/>
|
||||||
</div>
|
</div>
|
||||||
<style>
|
<style>
|
||||||
.non-autoplay-gifv {
|
.non-autoplay-gifv {
|
||||||
cursor: zoom-in;
|
cursor: zoom-in;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
:global(.non-autoplay-gifv .play-video-icon) {
|
||||||
|
transition: opacity 0.2s linear;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
<script>
|
<script>
|
||||||
import { mouseover } from '../_utils/events'
|
import { mouseover } from '../_utils/events'
|
||||||
import { imgLoad, imgLoadError } from '../_utils/events'
|
import { imgLoad, imgLoadError } from '../_utils/events'
|
||||||
|
import PlayVideoIcon from './PlayVideoIcon.html'
|
||||||
import { ONE_TRANSPARENT_PIXEL } from '../_static/media'
|
import { ONE_TRANSPARENT_PIXEL } from '../_static/media'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
|
@ -50,6 +56,9 @@
|
||||||
},
|
},
|
||||||
data: () => ({
|
data: () => ({
|
||||||
oneTransparentPixel: ONE_TRANSPARENT_PIXEL
|
oneTransparentPixel: ONE_TRANSPARENT_PIXEL
|
||||||
})
|
}),
|
||||||
|
components: {
|
||||||
|
PlayVideoIcon
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
|
@ -0,0 +1,26 @@
|
||||||
|
<div class="play-video-icon {{className || ''}}">
|
||||||
|
<svg>
|
||||||
|
<use xlink:href="#fa-play-circle" />
|
||||||
|
</svg>
|
||||||
|
</div>
|
||||||
|
<style>
|
||||||
|
.play-video-icon {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
bottom: 0;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
z-index: 40;
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
.play-video-icon svg {
|
||||||
|
width: 72px;
|
||||||
|
height: 72px;
|
||||||
|
fill: var(--mask-svg-fill);
|
||||||
|
border-radius: 100%;
|
||||||
|
background: var(--mask-opaque-bg);
|
||||||
|
}
|
||||||
|
</style>
|
|
@ -5,11 +5,7 @@
|
||||||
on:click="onClickPlayVideoButton()"
|
on:click="onClickPlayVideoButton()"
|
||||||
style="width: {{inlineWidth}}px; height: {{inlineHeight}}px;"
|
style="width: {{inlineWidth}}px; height: {{inlineHeight}}px;"
|
||||||
>
|
>
|
||||||
<div class="svg-wrapper">
|
<PlayVideoIcon />
|
||||||
<svg>
|
|
||||||
<use xlink:href="#fa-play-circle" />
|
|
||||||
</svg>
|
|
||||||
</div>
|
|
||||||
<img alt="{{media.description || ''}}"
|
<img alt="{{media.description || ''}}"
|
||||||
src="{{imageError ? oneTransparentPixel : media.preview_url}}"
|
src="{{imageError ? oneTransparentPixel : media.preview_url}}"
|
||||||
width="{{inlineWidth}}"
|
width="{{inlineWidth}}"
|
||||||
|
@ -81,25 +77,6 @@
|
||||||
background: none;
|
background: none;
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
.play-video-button .svg-wrapper {
|
|
||||||
position: absolute;
|
|
||||||
top: 0;
|
|
||||||
left: 0;
|
|
||||||
right: 0;
|
|
||||||
bottom: 0;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
z-index: 40;
|
|
||||||
pointer-events: none;
|
|
||||||
}
|
|
||||||
.play-video-button svg {
|
|
||||||
width: 72px;
|
|
||||||
height: 72px;
|
|
||||||
fill: var(--mask-svg-fill);
|
|
||||||
border-radius: 100%;
|
|
||||||
background: var(--mask-opaque-bg);
|
|
||||||
}
|
|
||||||
.show-image-button {
|
.show-image-button {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
@ -124,6 +101,7 @@
|
||||||
import { importDialogs } from '../../_utils/asyncModules'
|
import { importDialogs } from '../../_utils/asyncModules'
|
||||||
import { mouseover } from '../../_utils/events'
|
import { mouseover } from '../../_utils/events'
|
||||||
import NonAutoplayGifv from '../NonAutoplayGifv.html'
|
import NonAutoplayGifv from '../NonAutoplayGifv.html'
|
||||||
|
import PlayVideoIcon from '../PlayVideoIcon.html'
|
||||||
import { ONE_TRANSPARENT_PIXEL } from '../../_static/media'
|
import { ONE_TRANSPARENT_PIXEL } from '../../_static/media'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
|
@ -168,7 +146,8 @@
|
||||||
mouseover
|
mouseover
|
||||||
},
|
},
|
||||||
components: {
|
components: {
|
||||||
NonAutoplayGifv
|
NonAutoplayGifv,
|
||||||
|
PlayVideoIcon
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
|
@ -1,7 +1,6 @@
|
||||||
import { foobarRole } from '../roles'
|
import { foobarRole } from '../roles'
|
||||||
import {
|
import {
|
||||||
getFirstVisibleStatus, getNthReplyButton, getNthStatus, getUrl, homeNavButton, notificationsNavButton,
|
getNthStatus, scrollContainerToTop, showMoreButton, sleep
|
||||||
postStatusButton, scrollContainerToTop, showMoreButton, sleep
|
|
||||||
} from '../utils'
|
} from '../utils'
|
||||||
import { postAsAdmin } from '../serverActions'
|
import { postAsAdmin } from '../serverActions'
|
||||||
|
|
||||||
|
@ -20,6 +19,7 @@ test('new incoming toots show a button if scrolled down', async t => {
|
||||||
.hover(getNthStatus(0))
|
.hover(getNthStatus(0))
|
||||||
.hover(getNthStatus(2))
|
.hover(getNthStatus(2))
|
||||||
.hover(getNthStatus(4))
|
.hover(getNthStatus(4))
|
||||||
|
await sleep(1000)
|
||||||
await postAsAdmin('hello my ragtime gal')
|
await postAsAdmin('hello my ragtime gal')
|
||||||
await postAsAdmin('send me a kiss by wire')
|
await postAsAdmin('send me a kiss by wire')
|
||||||
await sleep(4000)
|
await sleep(4000)
|
||||||
|
|
Loading…
Reference in New Issue