webkit css3 animation loop

后端 未结 3 791
轻奢々
轻奢々 2021-02-04 16:38

I made a background to animate from left to right. Everything works fine but when background-image reaches right, the animation starts over again.

How can i mak

3条回答
  •  心在旅途
    2021-02-04 17:07

    With that image, you can't. The CSS is doing what it's supposed to (repeating infinitely), but the image itself is not continuous. What you need is an image whose last frame is identical to its first, so that when the animation ends, it appears as if it never stopped.

    You can achieve this effect by making an extra-long image and rotating the image along its axis, but this effect works better on some images than others. Something like this:

    enter image description here

    In any case, here is the result: http://jsfiddle.net/Tu95Y/751/

    @-webkit-keyframes slide {
      from{
          background-position:1725px;
      }
      to{
          background-position:575px;
      }
    }
    
    #logo{
      width:575px;
      height:200px;
      background:url(http://f.cl.ly/items/0g3q1A203t2A2m182i1k/newbg.png);
      -webkit-animation: slide 10s linear infinite;
    }
    

提交回复
热议问题