34 lines
625 B
Vue
Raw Normal View History

<template>
2023-09-07 11:27:21 +08:00
<div class="leftTop">
<Card title="宣传视频">
<div class="videoBox">
<video src="" class="videos" autoplay controls loop></video>
</div>
</Card>
</div>
</template>
<script setup lang="ts">
2023-09-07 11:27:21 +08:00
import Card from "@/components/card.vue";
</script>
2023-09-07 11:27:21 +08:00
<style lang="scss" scoped>
.leftTop {
width: 100%;
height: 100%;
.videoBox {
width: 100%;
height: 100%;
background: url("@/assets/images/comprehensiveManage/project10.png") no-repeat;
background-size: 100% 100%;
.videos {
width: 78%;
height: 92%;
margin: 3% 11%;
}
}
}
::v-deep .h-card .content {
background: none;
}
</style>