|
|

楼主 |
发表于 2022-5-10 13:18
|
显示全部楼层
先上代码:
- <style>
- .mama {
- margin: auto;
- width: 740px;
- height: 520px;
- background: linear-gradient(to right, olive, lightgreen, pink);
- position: relative;
- }
- .mtv {
- position: absolute;
- width: 500px;
- height: 500px;
- left: 230px;
- top: 10px;
- background: tan;
- text-align: center;
- line-height: 500px;
- clip-path: circle(35% at 50% 51%);
- }
- </style>
- <div class="mama">
- <iframe class="mtv" frameborder="0" src="https://haokan.baidu.com/v?vid=8132915352905853598&pd=pcshare"></iframe>
- </div>
复制代码
|
|