2021-01-09 20:36:20 +01:00
|
|
|
<template>
|
2021-01-09 20:53:56 +01:00
|
|
|
<div class="video-scroll" ref="root">
|
2021-01-11 19:29:35 +01:00
|
|
|
<img class="visible loaded"
|
|
|
|
:src="definition.files[0]"
|
|
|
|
:style="{
|
2021-01-10 13:12:41 +01:00
|
|
|
top: `${Math.round(definition.top)}px`,
|
|
|
|
left: `${Math.round(definition.left)}px`,
|
2021-01-11 22:17:29 +01:00
|
|
|
width: isHorizontal ? `${Math.round(definition.width)}px` : 'auto',
|
2021-01-12 00:15:42 +01:00
|
|
|
height: isVertical ? `${Math.round(definition.height)}px` : 'auto',
|
2021-01-11 22:17:29 +01:00
|
|
|
rotate: `${definition.angle}deg`
|
2021-01-10 13:12:41 +01:00
|
|
|
}"
|
2021-01-11 19:29:35 +01:00
|
|
|
/>
|
2021-01-10 13:12:41 +01:00
|
|
|
|
2021-01-11 19:29:35 +01:00
|
|
|
<!--suppress RequiredAttributes -->
|
2021-01-11 22:17:29 +01:00
|
|
|
<img v-for="file in dynamicFiles"
|
|
|
|
:data-src="file.src"
|
2021-01-11 19:29:35 +01:00
|
|
|
:style="{
|
2021-01-11 22:17:29 +01:00
|
|
|
top: `${Math.round(file.top)}px`,
|
|
|
|
left: `${Math.round(file.left)}px`,
|
2021-01-10 13:12:41 +01:00
|
|
|
width: `${Math.round(definition.width)}px`,
|
2021-01-11 19:21:39 +01:00
|
|
|
height: `${Math.round(definition.height)}px`,
|
2021-01-11 22:17:29 +01:00
|
|
|
rotate: `${definition.angle}deg`
|
2021-01-10 13:12:41 +01:00
|
|
|
}"
|
2021-01-11 19:29:35 +01:00
|
|
|
/>
|
2021-01-09 20:36:20 +01:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2021-01-12 00:15:42 +01:00
|
|
|
import {defineComponent} from "vue";
|
2021-01-11 22:17:29 +01:00
|
|
|
import {rotate} from "@/utils";
|
2021-01-09 20:36:20 +01:00
|
|
|
|
|
|
|
export default defineComponent({
|
|
|
|
name: "VideoScroll",
|
|
|
|
props: {
|
|
|
|
definition: {
|
|
|
|
type: Object,
|
|
|
|
required: true
|
|
|
|
}
|
|
|
|
},
|
2021-01-10 13:12:41 +01:00
|
|
|
computed: {
|
2021-01-11 22:17:29 +01:00
|
|
|
dynamicFiles(): { [key: string]: string } {
|
|
|
|
return this.definition.files.slice(1).map((src: string, idx: number) => {
|
|
|
|
const cy = this.definition.top +
|
2021-01-12 00:15:42 +01:00
|
|
|
(this.isVertical ? (this.definition.height * (idx + 1) * this.verticalDirection) : 0);
|
2021-01-11 22:17:29 +01:00
|
|
|
const cx = this.definition.left +
|
2021-01-12 00:15:42 +01:00
|
|
|
(this.isHorizontal ? (this.definition.width * (idx + 1) * this.horizontalDirection) : 0);
|
2021-01-11 22:17:29 +01:00
|
|
|
const [left, top] = rotate(cx, cy, this.definition.left, this.definition.top, this.definition.angle);
|
|
|
|
return {top, left, src};
|
|
|
|
});
|
|
|
|
},
|
|
|
|
isHorizontal(): boolean {
|
2021-01-12 00:15:42 +01:00
|
|
|
return this.definition.directions.some(
|
|
|
|
(dir: VideoScrollDirection) => dir === VideoScrollDirection.LEFT || dir === VideoScrollDirection.RIGHT
|
|
|
|
);
|
2021-01-11 22:17:29 +01:00
|
|
|
},
|
2021-01-12 00:15:42 +01:00
|
|
|
isVertical(): boolean {
|
|
|
|
return this.definition.directions.some(
|
|
|
|
(dir: VideoScrollDirection) => dir === VideoScrollDirection.UP || dir === VideoScrollDirection.DOWN
|
|
|
|
);
|
|
|
|
},
|
|
|
|
horizontalDirection(): number {
|
|
|
|
return this.definition.directions.includes(VideoScrollDirection.RIGHT) ? 1 : -1;
|
|
|
|
},
|
|
|
|
verticalDirection(): number {
|
|
|
|
return this.definition.directions.includes(VideoScrollDirection.DOWN) ? 1 : -1;
|
2021-01-11 19:29:35 +01:00
|
|
|
}
|
|
|
|
},
|
2021-01-12 00:15:42 +01:00
|
|
|
mounted() {
|
|
|
|
const observer = new IntersectionObserver((entries, observer) => {
|
|
|
|
entries.forEach((entry) => {
|
|
|
|
const element = entry.target as HTMLImageElement;
|
|
|
|
if (entry.isIntersecting) {
|
|
|
|
if (!element.src) {
|
|
|
|
console.debug(`[VIDEOSCROLL] Intersected, loading ${element.dataset.src}`);
|
|
|
|
element.src = element.dataset.src!;
|
|
|
|
element.onload = () => {
|
|
|
|
element.classList.add("loaded");
|
|
|
|
if (this.isHorizontal) {
|
2021-01-11 19:21:39 +01:00
|
|
|
element.style.height = "auto";
|
|
|
|
} else {
|
|
|
|
element.style.width = "auto";
|
|
|
|
}
|
2021-01-12 00:15:42 +01:00
|
|
|
};
|
2021-01-09 20:53:56 +01:00
|
|
|
}
|
2021-01-12 00:15:42 +01:00
|
|
|
}
|
2021-01-09 20:53:56 +01:00
|
|
|
});
|
|
|
|
});
|
2021-01-12 00:15:42 +01:00
|
|
|
Array.from((this.$refs.root as Element).children).forEach((el) => {
|
|
|
|
observer.observe(el);
|
|
|
|
});
|
2021-01-09 20:36:20 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
export enum VideoScrollDirection {
|
2021-01-10 13:12:41 +01:00
|
|
|
RIGHT = "right",
|
|
|
|
LEFT = "left",
|
|
|
|
UP = "up",
|
|
|
|
DOWN = "down"
|
2021-01-09 20:36:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
export interface VideoScrollDef {
|
|
|
|
top: number,
|
|
|
|
left: number,
|
2021-01-11 22:17:29 +01:00
|
|
|
angle: number,
|
2021-01-10 13:12:41 +01:00
|
|
|
width: number,
|
|
|
|
height: number,
|
2021-01-12 00:15:42 +01:00
|
|
|
directions: VideoScrollDirection[],
|
2021-01-10 13:12:41 +01:00
|
|
|
files: string[]
|
2021-01-09 20:36:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<!-- Add "scoped" attribute to limit CSS to this component only -->
|
|
|
|
<style scoped>
|
|
|
|
.video-scroll img {
|
|
|
|
position: absolute;
|
2021-01-09 21:00:30 +01:00
|
|
|
image-rendering: optimizeSpeed;
|
2021-01-09 23:56:14 +01:00
|
|
|
opacity: 0;
|
|
|
|
transition: opacity .5s;
|
|
|
|
}
|
|
|
|
|
2021-01-10 00:00:42 +01:00
|
|
|
.loaded {
|
2021-01-09 23:56:14 +01:00
|
|
|
opacity: 1 !important;
|
2021-01-09 20:36:20 +01:00
|
|
|
}
|
2021-01-10 00:00:42 +01:00
|
|
|
|
2021-01-09 20:36:20 +01:00
|
|
|
</style>
|