|
|

楼主 |
发表于 2026-8-8 08:52
|
显示全部楼层
本帖最后由 夕阳黄昏 于 2026-8-8 08:52 编辑
- <style>
- :root {
- --w:1620px;
- --h:600px;
- }
- #blk {
- width: var(--w);
- height: var(--h);
- position:relative;
- background:
- url("https://wj1.zp68.com:812/lxx/yunhua/20191220/1.jpg") no-repeat calc(0 * var(--w)) 0/cover,
- url("https://wj1.zp68.com:812/lxx/yunhua/20191220/2.jpg") no-repeat calc(1 * var(--w)) 0/cover,
- url("https://wj1.zp68.com:812/lxx/yunhua/20191220/3.jpg") no-repeat calc(2 * var(--w)) 0/cover,
- url("https://wj1.zp68.com:812/lxx/yunhua/20191220/4.jpg") no-repeat calc(3 * var(--w)) 0/cover,
- url("https://wj1.zp68.com:812/lxx/yunhua/20191220/5.jpg") no-repeat calc(4 * var(--w)) 0/cover,
- url("https://wj1.zp68.com:812/lxx/yunhua/20191220/6.jpg") no-repeat calc(5 * var(--w)) 0/cover,
- url("https://wj1.zp68.com:812/lxx/yunhua/20191220/7.jpg") no-repeat calc(6 * var(--w)) 0/cover,
- url("https://wj1.zp68.com:812/lxx/yunhua/20191220/8.jpg") no-repeat calc(7 * var(--w)) 0/cover,
- url("https://wj1.zp68.com:812/lxx/yunhua/20191220/9.jpg") no-repeat calc(8 * var(--w)) 0/cover,
- url("https://wj1.zp68.com:812/lxx/yunhua/20191220/10.jpg") no-repeat calc(9 * var(--w)) 0/cover,
- url("https://wj1.zp68.com:812/lxx/yunhua/20191220/11.jpg") no-repeat calc(10 * var(--w)) 0/cover,
- url("https://wj1.zp68.com:812/lxx/yunhua/20191220/12.jpg") no-repeat calc(11 * var(--w)) 0/cover,
- url("https://wj1.zp68.com:812/lxx/yunhua/20191220/1.jpg") no-repeat calc(12 * var(--w)) 0/cover;
- animation: bgmove 160s linear infinite ;
- box-shadow: 6px 6px 12px black;
- margin: 32px auto 40px calc(50% - (var(--w) / 2 + 81px));
- &:hover { animation-play-state: paused; }
- }
- @keyframes bgmove {
- to { background-position:
- calc(-12 * var(--w)) 0, calc(-11 * var(--w)) 0, calc(-10 * var(--w)) 0,
- calc(-9 * var(--w)) 0, calc(-8 * var(--w)) 0, calc(-7 * var(--w)) 0,
- calc(-6 * var(--w)) 0, calc(-5 * var(--w)) 0, calc(-4 * var(--w)) 0,
- calc(-3 * var(--w)) 0, calc(-2 * var(--w)) 0, calc(-1 * var(--w)) 0, calc(-0 * var(--w)) 0;
- }
- }
- </style>
- <div id="blk"></div>
- <audio src="https://upfile.mp3.wf/view.php/60cd00178a8e001f5d8d1f96fa8f9e9b.mp4" loop autoplay />
复制代码
|
|