The effect of CSS3 Carousel Graph

ask me why my rowing picture rolls back every time, and is there something wrong with the setting of the last frame? Should
overwrite the first picture?
`
< html lang= "en" >

< head >

<meta charset="UTF-8">
<title>Document</title>
<style>
    * {
        padding: 0;
        margin: 0;
    }

    div {
        width: 520px;
        overflow: hidden;
        margin: 100px auto;
    }

    ul {
        width: 3300px;
        height: 280px;
        animation: move 20s linear 0s infinite normal;
    }

    ul li {
        list-style: none;
        width: 520px;
        height: 100%;
        float: left;
    }

    @keyframes move {
        0% {
            margin-left: 0;
        }

        9% {
            margin-left: -520px;
        }
        18% {
            margin-left: -520px;
        }

        27% {
            margin-left: -1040px;
        }
        36% {
            margin-left: -1040px;
        }
        45% {
            margin-left: -1560px;
        }
        54% {
            margin-left: -1560px;
        }
        63% {
            margin-left: -2080px;
        }
        72% {
            margin-left: -2080px;
        }
        81% {
            margin-left: -2600px;
        }
        90% {
            margin-left: -2600px;
        }
        100% {
            margin-left: 0;
        }


    }
</style>

< / head >

< body >

<div>
    <ul>
        <li>
            <img src="https://img.codeshelper.com/upload/img/2021/03/15/ube5c4031zp8774.jpg_q90_.webp">
        </li>
        <li>
            <img src="https://img.codeshelper.com/upload/img/2021/03/15/wznreezzikj8775.jpg">
        </li>
        <li>
            <img src="https://img.codeshelper.com/upload/img/2021/03/15/oaoh4abgzbz8776.jpg">
        </li>
        <li>
            <img src="https://img.codeshelper.com/upload/img/2021/03/15/ef12wsmhuu18777.jpg">
        </li>
        <li>
            <img src="https://img.codeshelper.com/upload/img/2021/03/15/0mny4w2s1048778.jpg_q90_.webp">
        </li>
        <li>
            <img src="https://img.codeshelper.com/upload/img/2021/03/15/ube5c4031zp8774.jpg_q90_.webp">
        </li>
    </ul>
</div>

< / body >

< / html > `


your last frame, margin-left: 0, so after a round of scrolling, the picture will be rolled back.
if you use css3, use 0% 50% br 50% from right to left, then set it to left to right and 50% 100%. In this way, there will be no result of rolling back 6 pictures together.


left-right
0% {margin-left:0}; 100% {margin-left:-2600px;}
left-right-left
0% {margin-left:0}; 50% {margin-left:-2600px;} 100% {margin-left:0;}

suggestion: implement CSS seamless webcasting?

MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b38a79-2c146.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b38a79-2c146.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?