修改练习退出时候断网无法退出
This commit is contained in:
@@ -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>
|
||||
Reference in New Issue
Block a user