mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-06-07 17:07:19 +08:00
39 lines
1.0 KiB
Vue
39 lines
1.0 KiB
Vue
<template>
|
|
<div id="mse"></div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { onMounted } from "vue";
|
|
import Player from "xgplayer/dist/simple_player";
|
|
import volume from "xgplayer/dist/controls/volume";
|
|
import playbackRate from "xgplayer/dist/controls/playbackRate";
|
|
import screenShot from "xgplayer/dist/controls/screenShot";
|
|
import { deviceDetection } from "/@/utils/deviceDetection";
|
|
|
|
export default {
|
|
name: "reVideo",
|
|
setup() {
|
|
onMounted(() => {
|
|
new Player({
|
|
id: "mse",
|
|
autoplay: false,
|
|
screenShot: true,
|
|
url: "https://sf1-hscdn-tos.pstatp.com/obj/media-fe/xgplayer_doc_video/mp4/xgplayer-demo-720p.mp4",
|
|
poster:
|
|
"https://s2.pstatp.com/cdn/expire-1-M/byted-player-videos/1.0.0/poster.jpg",
|
|
fluid: deviceDetection(),
|
|
controlPlugins: [volume, playbackRate, screenShot],
|
|
playbackRate: [0.5, 0.75, 1, 1.5, 2] //传入倍速可选数组
|
|
});
|
|
});
|
|
return {};
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
#mse {
|
|
flex: auto;
|
|
}
|
|
</style>
|