Heim  >  Fragen und Antworten  >  Hauptteil

如何让图片来回走动?

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

phpcn_u699phpcn_u6992785 Tage vor1043

Antworte allen(2)Ich werde antworten

  • 数据分析师

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

    如何让图片来回走动?-PHP中文网问答-如何让图片来回走动?-PHP中文网问答

    围观一下哦,学习一下。

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


    Antwort
    0
  • StornierenAntwort