2018-05-02 00:05:36 +00:00
|
|
|
<div class="play-video-icon {className || ''}">
|
2018-03-16 15:42:10 +00:00
|
|
|
<svg class="play-video-icon-svg">
|
2018-03-10 19:28:30 +00:00
|
|
|
<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;
|
|
|
|
}
|
2018-03-16 15:42:10 +00:00
|
|
|
.play-video-icon-svg {
|
2018-03-10 19:28:30 +00:00
|
|
|
width: 72px;
|
|
|
|
height: 72px;
|
|
|
|
fill: var(--mask-svg-fill);
|
|
|
|
border-radius: 100%;
|
|
|
|
background: var(--mask-opaque-bg);
|
|
|
|
}
|
2018-04-30 16:57:49 +00:00
|
|
|
</style>
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
data: () => ({
|
|
|
|
className: void 0
|
|
|
|
})
|
|
|
|
}
|
|
|
|
</script>
|