Files
dvcp_v2_webapp/ui/dv/layout/AiDvDisplay/components/Display0.vue

51 lines
1020 B
Vue
Raw Normal View History

2022-03-25 11:09:26 +08:00
<template>
<div class="display0">
<div class="display0-container">
<div class="display0-content">
2022-09-07 17:38:57 +08:00
<img class="leftBg" src="https://cdn.cunwuyun.cn/dvcp/dv/img/display0-left.png">
<img class="contentBg" src="https://cdn.cunwuyun.cn/dvcp/dv/img/display0-bg.png" alt=""/>
<img class="leftBg" src="https://cdn.cunwuyun.cn/dvcp/dv/img/display0-left.png">
2022-03-25 11:09:26 +08:00
</div>
</div>
</div>
</template>
<script>
2022-09-07 17:38:57 +08:00
export default {
name: 'display0',
}
2022-03-25 11:09:26 +08:00
</script>
<style lang="scss" scoped>
2022-09-07 17:38:57 +08:00
.display0 {
//position: relative;
width: 840px;
height: 465px;
.display0-content {
display: flex;
position: absolute;
width: 100%;
2022-03-25 11:09:26 +08:00
height: 465px;
2022-09-07 17:38:57 +08:00
align-items: center;
justify-content: space-between;
2022-03-25 11:09:26 +08:00
background-size: cover;
2022-09-07 17:38:57 +08:00
.leftBg {
2022-03-25 11:09:26 +08:00
position: absolute;
2022-09-07 17:38:57 +08:00
left: 0;
2022-03-25 11:09:26 +08:00
2022-09-07 17:38:57 +08:00
&:last-of-type {
left: unset;
right: 0;
2022-03-25 11:09:26 +08:00
transform: rotate(180deg);
}
}
2022-09-07 17:38:57 +08:00
.contentBg{
transform-style: preserve-3d;
}
2022-03-25 11:09:26 +08:00
}
2022-09-07 17:38:57 +08:00
}
2022-03-25 11:09:26 +08:00
</style>