SOURCE

console 命令行工具 X clear

                    
>
console
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>

<style>
    #rect{
        animation: move 1s ease infinite alternate
    }
    @keyframes move{
        100%{transform:translateX(+15px)}
    }
</style>   

<body>
    <svg width="160" height="110" viewBox="0 0 160 110" fill="none" xmlns="http://www.w3.org/2000/svg">
    <g id='rect'>
       <path d="M93 67L13.5 47.9474V86.0526L93 67Z" fill="#66BE89" fill-opacity="0.6"/>
       <path d="M0 63.5L51.75 30.158L51.75 96.842L0 63.5Z" fill="#66BE89" fill-opacity="0.6"/>
    </g>
  <path d="M112.023 40.7321L131.064 20.0075L130.913 102.009L99.9074 101.952L159.917 102.063" stroke="#A3D8B8" stroke-width="15"/>
</svg>

</body>
</html>