Merge branch 'main' of git.zdool.com:xs/ggfwjsc

This commit is contained in:
姚宇浩 2024-06-04 09:47:16 +08:00
commit 2f13454c84
2 changed files with 14 additions and 0 deletions

BIN
src/assets/RightLine.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

View File

@ -20,6 +20,8 @@
</div> </div>
</div> </div>
</div> </div>
<img src="../assets/RightLine.gif" class="rightLineClass">
<img src="../assets/RightLine.gif" class="leftLineClass">
</div> </div>
</template> </template>
@ -218,5 +220,17 @@ onMounted(() => {
color: #fff; color: #fff;
} }
} }
.rightLineClass{
position: absolute;
right: -70px;
bottom: -50px;
}
.leftLineClass{
position: absolute;
transform: scaleX(-1);
left: -70px;
bottom: -50px;
}
} }
</style> </style>