|
|
本帖最后由 马黑黑 于 2022-1-5 23:45 编辑
改装一下,不用 table:
- <style type="text/css">
- .mDiv {
- position:relative;
- width:1200px;
- height:800px;
- left:-280px;
- background:url('https://pic.imgdb.cn/item/61d2717b2ab3f51d91200072.gif');
- }
- .ddDiv {
- position:relative;
- left:100px;
- top:-60px;
- width:60px;
- line-height:60px;
- color:transparent;
- font-family:SimHei,NSimSun,'Microsoft YaHei';
- font-size:60px;
- font-weight:bold;
- color:transparent;
- }
- .sp { animation:iFlash 4s linear infinite; }
- .ddDiv span:nth-child(1) { animation-delay:0s; }
- .ddDiv span:nth-child(2) { animation-delay:0.4s; }
- .ddDiv span:nth-child(3) { animation-delay:0.8s; }
- .ddDiv span:nth-child(4) { animation-delay:1.2s; }
- .ddDiv span:nth-child(5) { animation-delay:1.6s; }
- .ddDiv span:nth-child(6) { animation-delay:2s; }
- @keyframes iFlash {
- 0%,100% {
- color:white;
- text-shadow:
- 2px 2px 4px coral,
- 2px 2px 10px coral,
- 2px 2px 20px coral,
- 2px 2px 40px coral,
- 2px 2px 50px coral,
- 2px 2px 60px coral,
- 2px 2px 0px coral,
- 2px 2px 80px coral,
- 2px 2px 90px coral,
- 2px 2px 100px coral;
- }
- 30%,90% {
- color:transparent;
- text-shadow:none;
- }
- }
- </style>
- <div class="mDiv">
- <iframe style="position:relative;left:490px;top:260px;" width="220 height="150" frameborder="0" src="https://www.ixigua.com/iframe/6981969415860552223?autoplay=1" referrerpolicy="unsafe-url" allowfullscreen=""></iframe>
- <div class="ddDiv">
- <span class="sp">影</span>
- <span class="sp">生</span>
- <span class="sp">日</span>
- <span class="sp">快</span>
- <span class="sp">乐</span>
- <span class="sp">!</span>
- </div>
- </div>
复制代码
|
|