|
|

楼主 |
发表于 2022-4-2 22:50
|
显示全部楼层
- <style>
- .spiBox {
- position: relative;
- width: 760px;
- height: 500px;
- }
- .spiBox img {
- position: absolute;
- width: 200px;
- height: 150px;
- top: 20%;
- right: 0px;
- animation: walk 10s linear infinite;
- }
- @keyframes walk {
- 0% { transform: rotate(45deg); right: 0%; }
- 48% { transform: rotate(45deg); right: calc(100% - 200px); }
- 51% { transform: rotate(-135deg); right: calc(100% - 200px); }
- 98% { transform: rotate(-135deg); right: 0; }
- 100% { transform: rotate(45deg); right: 0; }
- }
- </style>
- <div class="spiBox">
- <img src="/data/attachment/forum/202204/02/204928eqvb53ezaw8vhhe5.gif" alt="" />
- </div>
复制代码
|
|