修改过渡界面的动画显示效果

master
Gary 4 weeks ago
parent a629d49cce
commit b3b696f13d

@ -2,7 +2,6 @@
<view class="background"> <view class="background">
<!--按钮--> <!--按钮-->
<image class="button" @click="goToLoginPage" src="@/static/transition/page7/pictures/button.png"></image> <image class="button" @click="goToLoginPage" src="@/static/transition/page7/pictures/button.png"></image>
</view> </view>
</template> </template>
@ -25,18 +24,30 @@ export default {
background-position: center; background-position: center;
height: 100vh; height: 100vh;
display: flex; display: flex;
flex-direction: column; /* 纵向排列 */ flex-direction: column;
align-items: center; /* 水平居中 */ align-items: center;
justify-content: flex-end; /* 使内容向底部对齐 */ justify-content: flex-end;
position: relative; /* 为绝对定位子元素提供相对定位的上下文 */ position: relative;
}
/* 渐变显示动画 */
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
} }
.button { .button {
position: absolute; /* 绝对定位 */ position: absolute;
width: 80%; width: 80%;
height: 12%; height: 12%;
bottom: 5%; /* 距离底部 20% 的位置 */ bottom: 5%;
left: 50%; /* 水平居中 */ left: 50%;
transform: translateX(-50%); /* 通过 translateX 使其居中 */ transform: translateX(-50%);
opacity: 0; /* 初始为透明 */
animation: fadeIn 2s ease-in forwards; /* 2秒渐变显示 */
} }
</style> </style>

Loading…
Cancel
Save