怎么了伙计们..我一直在训练自己了解这个奇妙的 Css3 关键帧世界。我已经看到了一些关于用 100% css 制作的滑块的方法,但我正在寻找不同的东西。我正在尝试做的是一个滑块,它同时移动所有图片(它们都对用户可见),当它们移动时,当第一张图片不可见时,例如(左侧) ,它应该来自右边,与其他图片一样......直到地球停止:D。我想做什么是可以理解的?但我不知道该怎么做。请帮忙!谢谢你的帮助。这是一些代码:
<div id="wrapper">
            <div id="slideshow">
                <figure class="teste">
                    <img src="images/daya1.jpg" alt="">
                </figure>
                 <figure class="teste">
                    <img src="images/daya2.jpg" alt="Profile of a Red kite">
                </figure>
                 <figure class="teste3">
                    <img src="images/daya3.jpg" alt="Profile of a Red kite">
                </figure>
                 <figure class="test4">
                    <img src="images/daya4.jpg" alt="Profile of a Red kite">
                </figure>
            </div>
这是其他一些代码
#wrapper{
margin: auto;
background-color: black;
width: 1100px;
}
#slideshow {
    margin-left: 20px;
    /*overflow: hidden;*/
    position: relative;
}
#slideshow figure{
    float: left;
    position: relative;
}
#slideshow figure.teste{
    -webkit-animation-name:sliderleft,slidertop,sliderright,sliderbottom;
    -webkit-animation-duration:5s, 5s,5s,5s;
    -webkit-animation-delay:0s,4s,9s,17s;
    /*-webkit-animation-fill-mode:forwards;*/
}
@-webkit-keyframes sliderleft{
from {left: 0px;}
to {left: -300px;}
}
  @-webkit-keyframes slidertop{
    0% {top: 0px;}
    100% {top: 200px;}
}
@-webkit-keyframes sliderright{
    from { left: 0px;}
    to {left: 750px;}
}
@-webkit-keyframes sliderbottom{
    from { bottom: 0px;}
    to {bottom: 750px;}
}