|
|

楼主 |
发表于 2022-5-11 13:14
|
显示全部楼层
代码分享:
- <style>
- .tvOuter {
- left: -27px;
- width: 814px;
- height: 460px;
- border-radius: 3px;
- background: rgba(0,0,0,.85);
- box-shadow: 0px 0px 2px 4px #000;
- position: relative;
- }
- .tvOuter::before, .tvOuter::after {
- position: absolute;
- content: '';
- width: 30px;
- height: 30px;
- top: 100%;
- left: 20%;
- background: inherit;
- clip-path: polygon(10% 100%,50% 0%,90% 100%,70% 100%,50% 30%,30% 100%);
- }
- .tvOuter::after { left: 80%;}
- .tvInner {
- position: absolute;
- width: 900px;
- height: 600px;
- left: -34px;
- top: -82px;
- clip-path: inset(82px 56px 64px 34px);
- }
- </style>
- <div class="tvOuter">
- <iframe class="tvInner" src="https://haokan.baidu.com/v?vid=4987522748064683150&pd=pcshare"></iframe>
- </div>
复制代码
|
|