|
|

楼主 |
发表于 2022-1-23 17:35
|
显示全部楼层
本帖最后由 马黑黑 于 2022-1-23 17:57 编辑
代码其实很简单:
- <style type="text/css">
- .papa { position: relative;}
- .denglong1, .denglong2 {
- position: fixed;
- width: 200px;
- height: 200px;
- opacity: 0.5;
- }
- .denglong1 { left: 0; top: 0; }
- .denglong2 { left: calc(100vw - 200px); top: 0; }
- </style>
- <div class="papa">
- <img class="denglong1" src="https://www.huachaowang.com/data/attachment/forum/202201/23/144742dpfezemfeyjylm4y.jpg" alt="" />
- <img class="denglong2" src="https://www.huachaowang.com/data/attachment/forum/202201/23/144742dpfezemfeyjylm4y.jpg" alt="" />
- <p>祝大家新春快乐万事如意财源滚滚来!</p>
- </div>
复制代码 |
|