Browse Source

延时优化,按钮状态优化,提示问题优化

milestone-20250820-金币兑换Token
no99 2 months ago
parent
commit
f4ebc2be89
  1. 10
      src/views/homePage.vue

10
src/views/homePage.vue

@ -971,7 +971,7 @@ const goChange = () => {
changeSuccessDialogVisible.value = true; changeSuccessDialogVisible.value = true;
setTimeout(() => { setTimeout(() => {
changeSuccessDialogVisible.value = false; changeSuccessDialogVisible.value = false;
}, 3000);
}, 2000);
}; };
// 8.18Token end // 8.18Token end
@ -1666,6 +1666,12 @@ body {
flex-direction: column; flex-direction: column;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
cursor: pointer;
}
.backToHomeBtn:hover{
transform: scale(1.05);
} }
.backImg { .backImg {
@ -1693,6 +1699,7 @@ body {
width: 65%; width: 65%;
height: 100%; height: 100%;
position: relative; position: relative;
cursor: pointer;
} }
.pc-countBtn:hover { .pc-countBtn:hover {
@ -1731,6 +1738,7 @@ body {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;
cursor: pointer;
} }
.pc-backImg { .pc-backImg {
width: auto; width: auto;

Loading…
Cancel
Save