keyframes

.Khuachu {
animation: myfirst 0.5s;
-webkit-animation: myfirst 0.5s;
/* Safari and Chrome */
display: block;
}

@keyframes myfirst {
from {
position: fixed;
right: -300px;
}
to {
position: fixed;
right: 0px;
}
}

@-webkit-keyframes myfirst
/* Safari and Chrome */

{
from {
position: fixed;
right: -300px;
}
to {
position: fixed;
right: 0px;
}
}

posted @ 2019-06-20 17:26  ▍凉城空巷°  阅读(169)  评论(0编辑  收藏  举报