|
|

楼主 |
发表于 2022-8-31 12:28
|
显示全部楼层
代码:
- <style>
- #papa {
- margin: 10px auto 0;
- width: 400px;
- height: 200px;
- position: relative;
- }
- .ball {
- --delay: 0s;
- position: absolute;
- width: 20px;
- height: 20px;
- border-radius: 50%;
- background: orange;
- animation: move 6s var(--delay) infinite;
- }
- .b1 { --delay: 0.5s; background: tomato; }
- .b2 { --delay: 1s; background: olive; }
- @keyframes move{
- 0%, 100% { left: 0; top: 0; }
- 25% { left: calc(100% - 20px); top: 0; }
- 50% { left: calc(100% - 20px); top: calc(100% - 20px); }
- 75% { left: 0; top: calc(100% - 20px); }
- }
- </style>
- <div id="papa">
- <span class="ball"></span>
- <span class="ball b1"></span>
- <span class="ball b2"></span>
- </div>
复制代码
|
|