|
|

楼主 |
发表于 2025-7-5 21:03
|
显示全部楼层
代码:
- <style>
- .wrapper {
- margin: 30px auto;
- width: 740px;
- height: 460px;
- border: 1px solid gray;
- display: grid;
- place-items: center;
- perspective: 1000px;
- position: relative;
- }
- .sdiv {
- position: absolute;
- width: 200px;
- height: 200px;
- background: url('https://638183.freep.cn/638183/small/ytji_133877216020393750.png') no-repeat center/cover;
- filter: drop-shadow(6px 6px 20px gray);
- cursor: pointer;
- transform: rotate3d(0, 0.3, 0, 0);
- animation: rot3d 4s linear infinite var(--state);
- --state: running;
- }
- .sdiv:hover {
- filter: drop-shadow(6px 6px 40px black) hue-rotate(130deg);
- --state: paused;
- }
- @keyframes rot3d { to { transform: rotate3d(0, 0.3, 1, 360deg); } }
- </style>
- <div class="wrapper">
- <div class="sdiv"></div>
- </div>
复制代码
|
评分
-
| 参与人数 2 | 威望 +80 |
金钱 +160 |
经验 +80 |
收起
理由
|
花飞飞
| + 30 |
+ 60 |
+ 30 |
很给力! |
红影
| + 50 |
+ 100 |
+ 50 |
赞一个! |
查看全部评分
|