2018-01-29 07:47:26 +00:00
|
|
|
<template>
|
2019-07-05 07:17:44 +00:00
|
|
|
<div
|
|
|
|
class="still-image"
|
|
|
|
:class="{ animated: animated }"
|
|
|
|
>
|
|
|
|
<canvas
|
|
|
|
v-if="animated"
|
|
|
|
ref="canvas"
|
|
|
|
/>
|
2019-09-04 15:23:47 +00:00
|
|
|
<!-- NOTE: key is required to force to re-render img tag when src is changed -->
|
2019-07-05 07:17:44 +00:00
|
|
|
<img
|
|
|
|
ref="src"
|
2019-09-03 20:44:51 +00:00
|
|
|
:key="src"
|
2019-07-05 07:17:44 +00:00
|
|
|
:src="src"
|
|
|
|
:referrerpolicy="referrerpolicy"
|
|
|
|
@load="onLoad"
|
|
|
|
@error="onError"
|
|
|
|
>
|
2018-01-29 07:47:26 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script src="./still-image.js"></script>
|
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
@import '../../_variables.scss';
|
2020-06-05 15:55:19 +00:00
|
|
|
.contain-fit {
|
|
|
|
.still-image {
|
|
|
|
img {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-29 07:47:26 +00:00
|
|
|
.still-image {
|
2018-04-07 18:58:29 +00:00
|
|
|
position: relative;
|
|
|
|
line-height: 0;
|
|
|
|
overflow: hidden;
|
|
|
|
width: 100%;
|
2018-04-08 23:10:04 +00:00
|
|
|
height: 100%;
|
2020-06-05 15:55:19 +00:00
|
|
|
display: flex;
|
2018-03-11 23:31:33 +00:00
|
|
|
|
2018-04-08 11:46:36 +00:00
|
|
|
&:hover canvas {
|
2018-04-07 18:58:29 +00:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
img {
|
|
|
|
width: 100%;
|
2018-09-03 19:49:46 +00:00
|
|
|
object-fit: contain;
|
2020-06-05 15:55:19 +00:00
|
|
|
align-self: center;
|
2018-04-07 18:58:29 +00:00
|
|
|
}
|
2018-03-11 23:31:33 +00:00
|
|
|
|
2018-04-07 18:58:29 +00:00
|
|
|
&.animated {
|
|
|
|
&:hover::before,
|
2018-03-11 23:31:33 +00:00
|
|
|
img {
|
2018-04-07 18:58:29 +00:00
|
|
|
visibility: hidden;
|
2018-03-11 23:31:33 +00:00
|
|
|
}
|
|
|
|
|
2018-04-07 18:58:29 +00:00
|
|
|
&:hover img {
|
|
|
|
visibility: visible
|
2018-01-29 07:47:26 +00:00
|
|
|
}
|
|
|
|
|
2018-04-07 18:58:29 +00:00
|
|
|
&::before {
|
|
|
|
content: 'gif';
|
|
|
|
position: absolute;
|
|
|
|
line-height: 10px;
|
|
|
|
font-size: 10px;
|
|
|
|
top: 5px;
|
|
|
|
left: 5px;
|
|
|
|
background: rgba(127,127,127,.5);
|
|
|
|
color: #FFF;
|
|
|
|
display: block;
|
|
|
|
padding: 2px 4px;
|
2018-04-08 11:45:12 +00:00
|
|
|
border-radius: $fallback--tooltipRadius;
|
|
|
|
border-radius: var(--tooltipRadius, $fallback--tooltipRadius);
|
2018-04-07 18:58:29 +00:00
|
|
|
z-index: 2;
|
2018-01-29 07:47:26 +00:00
|
|
|
}
|
2018-04-07 18:58:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
canvas {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2018-08-27 19:40:30 +00:00
|
|
|
object-fit: contain;
|
2018-04-07 18:58:29 +00:00
|
|
|
}
|
2018-01-29 07:47:26 +00:00
|
|
|
}
|
|
|
|
</style>
|