0
I added some @keyframes
and animation
, it worked.
@keyframes in {
0% {
opacity: 0;
left: 100%
}
100% {
opacity: 1;
left: 0%
}
}
.some-class{
animation: in 300ms;
}
0
Source:stackexchange.com
0
I added some @keyframes
and animation
, it worked.
@keyframes in {
0% {
opacity: 0;
left: 100%
}
100% {
opacity: 1;
left: 0%
}
}
.some-class{
animation: in 300ms;
}
0