search

Home  >  Q&A  >  body text

如何让图片来回走动?

想请问一下
假设我想让某张图片在网页某处来回走动
该怎么做?

phpcn_u699phpcn_u6992952 days ago1116

reply all(2)I'll reply

  • 数据分析师

    数据分析师2017-10-01 00:42:17

    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.

    reply
    0
  • 巴扎黑

    巴扎黑2017-03-06 13:33:18

    .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}
    }


    reply
    0
  • Cancelreply