|
|

楼主 |
发表于 2022-4-1 20:33
|
显示全部楼层
本帖最后由 马黑黑 于 2022-4-1 20:52 编辑
帖子用到的图片:
金鱼
帖子代码:
- <style type="text/css">
- .bgBox {
- margin: auto;
- position: relative;
- width: 400px;
- height: 400px;
- border-radius: 50%;
- background: url('/data/attachment/forum/202204/01/203249r4fb3n3twrh74nbl.gif');
- }
- .bgBox::before {
- content: '';
- position: absolute;
- width: 400px;
- height: 400px;
- background: linear-gradient(70deg, rgba(00,140,255,.65), rgba(200,0,35,.5), rgba(0,150,0,.7));
- border-radius: 50%;
- }
- </style>
- <div class="bgBox"></div>
复制代码
|
|