This commit is contained in:
hh
2021-11-23 08:38:22 +08:00
parent c2e6ad1b48
commit dc0f6752bc
15 changed files with 672 additions and 70 deletions

View File

@ -3,6 +3,7 @@
<template>
<div class="container3">
<slot />
<div class="container3bg"></div>
</div>
</template>
@ -35,5 +36,17 @@ export default {
background-image: url(./bg.png);
background-size: cover;
overflow: hidden;
z-index: 10;
.container3bg {
position: absolute;
top: 0;
left: 0;
width: 766px;
height: 632px;
background-image: url(./bg.png);
background-size: cover;
pointer-events: none;
user-select: none;
}
}
</style>