想请问一下假设我想让某张图片在网页某处来回走动该怎么做?
How to make the picture move back and forth? -PHP Chinese website Q&A-How to make pictures move back and forth? -PHP Chinese website Q&A
Let’s take a look and learn.
.img-move{ animation:imgMove 4s linear infinite; -moz-animation:imgMove 4s linear infinite; -webkit-animation:imgMove 4s linear infinite; -o-animation:imgMove 4s linear infinite; position: absolute;} @keyframes imgMove{0% {right:100px;} 25%{right:150px;} 50%{right:100px;} 75%{right:50px}100% {right:100px} }
How to make the picture move back and forth? -PHP Chinese website Q&A-How to make pictures move back and forth? -PHP Chinese website Q&A
Let’s take a look and learn.