仿gta官网字体动画
flyKot2025/10/20
效果预览
WELCOLE BACK GAMER
css
.title {
width: 100vw;
height: 100vh;
display: flex;
background: url(./images/gtafontimg.jpg);
justify-content: center;
align-items: center;
font-size: 300vw;
color: transparent;
background-clip: text;
animation: scale 2s forwards;
white-space: nowrap;
overflow: hidden;
}
@keyframes scale {
from {
font-size: 200vw;
color: transparent;
}
to {
font-size: 6vw;
color: #000;
}
}
