|
|

楼主 |
发表于 2025-2-16 18:13
|
显示全部楼层
代码
- <style>
- #papa {
- margin: auto;
- margin-top: 100px;
- width: 740px;
- height: 500px;
- border: thick ridge cyan;
- transform-style: preserve-3d;
- perspective: 1500px;
- position: relative;
- }
- .image {
- --deg: 45deg;
- width: 360px;
- height: 500px;
- filter: drop-shadow(3px 3px 6px rgba(0,0,0,.5));
- transform: rotateY(var(--deg));
- transition: .75s;
- }
- .image:hover {
- transform: rotateY(0) scale(1.2);
- }
- #papa .image:nth-of-type(2) {
- --deg: -45deg;
- }
- </style>
- <div id="papa">
- <img alt="" class="image" src="https://638183.freep.cn/638183/t24/biu/ji02.jpg" />
- <img alt="" class="image" src="https://638183.freep.cn/638183/t24/biu/ji04.jpg" />
- </div>
复制代码
|
评分
-
| 参与人数 3 | 威望 +130 |
金钱 +260 |
经验 +130 |
收起
理由
|
樵歌
| + 50 |
+ 100 |
+ 50 |
赞一个! |
花飞飞
| + 30 |
+ 60 |
+ 30 |
很给力! |
红影
| + 50 |
+ 100 |
+ 50 |
赞一个! |
查看全部评分
|