修改练习退出时候断网无法退出

This commit is contained in:
田岩
2025-09-18 17:38:43 +08:00
parent 1d408c444b
commit b7bae28080
8 changed files with 59 additions and 10 deletions
@@ -0,0 +1,44 @@
<template>
<view>
<view class="copyRightBox">
<view class="font" ref="sy" v-for="(item, index) in 30" :key="index">
{{ sytext }}
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {};
},
props: {
//载入的标签数据
sytext: {
type: String,
default: '吉AI学'
}
},
mounted() {}
};
</script>
<style>
.copyRightBox {
overflow: hidden;
width: 100%;
height: 700px;
pointer-events: none;
position: fixed;
top: 20px;
z-index: 99999;
}
.font {
float: left;
transform: rotate(-30deg);
margin-top: 220upx;
margin-left: 100upx;
font-size: 34upx;
color: rgba(100, 0, 0, 0.2);
letter-spacing: 4px;
}
</style>