|
@@ -28,7 +28,7 @@ function close() {
|
|
let t = setTimeout(() => {
|
|
let t = setTimeout(() => {
|
|
clearTimeout(t);
|
|
clearTimeout(t);
|
|
emits("changePage", "third");
|
|
emits("changePage", "third");
|
|
- }, 300);
|
|
|
|
|
|
+ }, 500);
|
|
}
|
|
}
|
|
</script>
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
<style lang="scss" scoped>
|
|
@@ -77,4 +77,20 @@ function close() {
|
|
background-color: #ffffff80;
|
|
background-color: #ffffff80;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+@keyframes star {
|
|
|
|
+ 0% {
|
|
|
|
+ width: 15px;
|
|
|
|
+ height: 15px;
|
|
|
|
+ }
|
|
|
|
+ 50% {
|
|
|
|
+ width: 35px;
|
|
|
|
+ height: 35px;
|
|
|
|
+ }
|
|
|
|
+ 100% {
|
|
|
|
+ width: 15px;
|
|
|
|
+ height: 15px;
|
|
|
|
+ }
|
|
|
|
+}
|
|
</style>
|
|
</style>
|