无需繁琐设置,轻轻一点, 魔笛手立即为你开启省电之旅
.main {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
}
.btn {
width: 75%;
height: 40px;
color: #fff;
font-weight: 600;
font-size: 18px;
animation-name: Scale;
animation-iteration-count: infinite;
animation-duration: 1500ms;
animation-fill-mode: none;
animation-timing-function: linear;
border: none;
background-color: #fcac19;
border-radius: 30px;
}
@keyframes Scale {
0% {
transform: scale(1);
}
50% {
transform: scale(1.1);
}
100% {
transform: scale(1);
}
}