akkoma-fe/src/components/still-image/still-image.vue

91 lines
1.5 KiB
Vue
Raw Normal View History

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';
.contain-fit {
.still-image {
img {
height: 100%;
}
}
}
2018-01-29 07:47:26 +00:00
.still-image {
position: relative;
line-height: 0;
overflow: hidden;
width: 100%;
2018-04-08 23:10:04 +00:00
height: 100%;
display: flex;
2018-04-08 11:46:36 +00:00
&:hover canvas {
display: none;
}
img {
width: 100%;
2018-09-03 19:49:46 +00:00
object-fit: contain;
align-self: center;
}
&.animated {
&:hover::before,
img {
visibility: hidden;
}
&:hover img {
visibility: visible
2018-01-29 07:47:26 +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);
z-index: 2;
2018-01-29 07:47:26 +00:00
}
}
canvas {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
width: 100%;
height: 100%;
object-fit: contain;
}
2018-01-29 07:47:26 +00:00
}
</style>