|
@@ -86,7 +86,7 @@ onMounted(async () => {
|
|
|
dialog.value = true
|
|
|
setTimeout(() => {
|
|
|
dialog.value = false
|
|
|
- }, 3000);
|
|
|
+ }, 3000)
|
|
|
}
|
|
|
}
|
|
|
})
|
|
@@ -106,6 +106,11 @@ onUnmounted(() => {
|
|
|
background-size: 100% 100%;
|
|
|
.menus {
|
|
|
height: 66px;
|
|
|
+ -webkit-transition: all 1.5s ease;
|
|
|
+ -moz-transition: all 1.5s ease;
|
|
|
+ -ms-transition: all 1.5s ease;
|
|
|
+ -o-transition: all 1.5s ease;
|
|
|
+ transition: all 1.5s ease;
|
|
|
}
|
|
|
.new_style {
|
|
|
position: fixed;
|
|
@@ -114,8 +119,11 @@ onUnmounted(() => {
|
|
|
width: 100%;
|
|
|
z-index: 1000;
|
|
|
background-color: #fff;
|
|
|
- -webkit-transition: all 0.8s ease;
|
|
|
- transition: all 0.8s ease;
|
|
|
+ -webkit-transition: all 1.5s ease;
|
|
|
+ -moz-transition: all 1.5s ease;
|
|
|
+ -ms-transition: all 1.5s ease;
|
|
|
+ -o-transition: all 1.5s ease;
|
|
|
+ transition: all 1.5s ease;
|
|
|
}
|
|
|
.zero {
|
|
|
margin: 0 0 40px 0;
|
|
@@ -124,7 +132,7 @@ onUnmounted(() => {
|
|
|
}
|
|
|
.bottom {
|
|
|
position: absolute;
|
|
|
- top: 400px;
|
|
|
+ top: 470px;
|
|
|
.zero {
|
|
|
margin: 0 0 40px 0;
|
|
|
padding: 0 17%;
|