mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2025-12-24 21:40:22 +08:00
40 lines
840 B
Vue
40 lines
840 B
Vue
<template>
|
|
<div class="h-full">
|
|
<n-card title="视频播放器插件" class="h-full shadow-sm rounded-16px">
|
|
<div ref="domRef" class=""></div>
|
|
</n-card>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { onMounted, onUnmounted, ref } from 'vue';
|
|
import Player from 'xgplayer';
|
|
|
|
const domRef = ref<HTMLElement>();
|
|
const player = ref<Player>();
|
|
|
|
function renderXgPlayer() {
|
|
if (!domRef.value) return;
|
|
const url = 'https://lf9-cdn-tos.bytecdntp.com/cdn/expire-1-M/byted-player-videos/1.0.0/xgplayer-demo.mp4';
|
|
player.value = new Player({
|
|
el: domRef.value,
|
|
url,
|
|
playbackRate: [0.5, 0.75, 1, 1.5, 2],
|
|
fluid: true
|
|
});
|
|
}
|
|
function destroyXgPlayer() {
|
|
player.value?.destroy();
|
|
}
|
|
|
|
onMounted(() => {
|
|
renderXgPlayer();
|
|
});
|
|
|
|
onUnmounted(() => {
|
|
destroyXgPlayer();
|
|
});
|
|
</script>
|
|
|
|
<style scoped></style>
|