cubic-bezier(0.25, 0.1, 0.75, 0.9)
animation: slideAnimation 2s cubic-bezier(0.25, 0.1, 0.75, 0.9) 0s 1 none;
.animated-element {
animation: slideAnimation 2s cubic-bezier(0.25, 0.1, 0.75, 0.9) 0s 1 none;
}
@keyframes slideAnimation {
from { transform: translateX(0); }
to { transform: translateX(300px); }
}
更多推荐