宁静 发表于 2023-5-24 21:23

殇雪 歌手:云菲菲


<style>
#papa {margin: 150px 0 0 calc(50% - 720px);width: 1278px;height: 644px;background: tan url('https://wj.zp68.com/lxx/yunhua/2022/12/06/2F.gif');box-shadow: 0 0 8px #000;display: grid;place-items: center;position: relative;--state: paused;}
css-doodle{position: absolute;}
</style>

<div id="papa">
        <css-doodle id="mplayer">
                :doodle {
                        @grid: 2 / 800px 100px;
                        color: var(--color);
                        bottom: 20px;
                        z-index: 100;
                        --prog: 0%; --size: 40px; --ttmsg1: '00:00'; --ttmsg2: '00:00'; --color: RoyalBlue;
                }
                /* 时间信息 : 左 */
                @nth(1) {
                        @place: 5% 140%;
                                          
                        :after { content: var(--ttmsg1); }
                }
                /* 控制器 */
                @nth(2) {
                        @size: 60px;
                        @shape: windmill;
                        @place: 50% 35%;                        
                        background: var(--color);
                        animation: rot 6s infinite linear var(--state);
                }
                /* 时间信息 : 右 */
                @nth(3) {
                        @place: 95% 140%;
                        :after { content: var(--ttmsg2); }
                }
                /* 进度条 */
                @nth(4) {
                        @place: 50% 80%;
                        @size: 100% 2px;
                        background: Silver;
                        display: grid;
                        place-items: center start;
                        :before {
                                content: '';
                                width: var(--prog);
                                height: 100%;
                                background: var(--color);
                        }
                }
                @keyframes rot { to { transform: rotate(1turn); } }
        </css-doodle>
        <css-doodle id="lrc">
                :doodle {
                        @size: auto 4em;
                        top: 80px;
                        --geci: "云菲菲 - 殇雪"; --motion: cover2; --tt: 1s;
                }
                /* 单元格两个伪元素显示lrc歌词 */
                display: grid;
                place-items: center start;
                :before, :after {
                        content: var(--geci);
                        color: snow; /* 歌词底色 */
                        font: bold 2.4em sans-serif;
                        text-shadow: 1px 1px 1px #000;
                        white-space: pre;
               }
                :after {
                        position: absolute;
                        width: 0;
                        color: RoyalBlue; /* 同步歌词颜色 */
                        overflow: hidden;
                        animation: var(--motion) var(--tt) linear forwards var(--state);
                }
                @keyframes cover1 { from { width: 0; } to { width: 100%; } }
                @keyframes cover2 { from { width: 0; } to { width: 100%; } }
        </css-doodle>
<css-doodle grid="16" id="fFloat">
        :doodle {
                @size: 1278px 644px;
                --state:paused;
        }
        position: absolute;
        left: @r(-105)%;
        top: 10%;
        :after {
                position: absolute;
                content: '@p(❄,❄,❄,❄,❄,❄,❄,❄,❄,❄,❄,❄,❄,❄,❄,❄)';
                color:AliceBlue;
                font-size: @r(8, 30)px;
        }
        animation: fall 40s @r(-6, 36)s infinite var(--state);
        @keyframes fall {
                from { transform: rotate(0deg) translate(0px); }
                to { transform: rotate(@r(-60,60)deg) translate(1500px); }
        }
</css-doodle>

<img src="https://wj.zp68.com/lxx/yunhua/2022/12/06/84.gif" style="z-index:88;position:absolute; top: 480px;right:90%;">

        <audio id="aud" src="https://wj1.zp68.com:812/lxx/yunhua/2022/12/06/001.mp3" autoplay loop></audio>
</div>

<script>
(function() {
        let script = document.createElement('script');
        script.src = 'https://wj.zp68.com/lxx/yunhua/2022/12/06/css-doodle.min.js';
        document.head.appendChild(script);
        let slip = 0.5, mFlag = true, mKey = 0, clickIdx = 0, progChg = 0, cursors = ['default','pointer','pointer'];
        let lrcAr = [
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
       
];
        let toMin = (val) => {if (!val) return '00:00';val = Math.floor(val);let min = parseInt(val / 60), sec = parseFloat(val % 60);if (min < 10) min = '0' + min;if (sec < 10) sec = '0' + sec;return min + ':' + sec;};
        let calcKey = () => {for (j = 0;j < lrcAr.length;j++) {if (aud.currentTime <= lrcAr) {mKey = j - 1;break;}}if (mKey < 0) mKey = 0;if (mKey > lrcAr.length - 1) mKey = lrcAr.length - 1;let time = lrcAr - (aud.currentTime - lrcAr);showLrc(time);};
        let mState = () => aud.paused ? (papa.style.setProperty('--state', 'paused'),fFloat.style.setProperty('--state', 'paused') ) : (papa.style.setProperty('--state','running'),fFloat.style.setProperty('--state', 'running'));
        let showLrc = (time) => {lrc.style.setProperty('--motion', mFlag ? 'cover1' : 'cover2');lrc.style.setProperty('--geci', '"' + lrcAr + '"');lrc.style.setProperty('--tt', time + 's');mKey += 1;mFlag = !mFlag;};
        aud.addEventListener('play', mState, false);
        aud.addEventListener('pause', mState, false);
        aud.addEventListener('seeked', () => calcKey());
        aud.addEventListener('timeupdate', () => {for (j = 0; j < lrcAr.length; j++) {if (aud.currentTime - slip >= lrcAr) {cKey = j;if (mKey === j) showLrc(lrcAr);else continue;}}mplayer.style.setProperty('--ttmsg1', `'${toMin(aud.currentTime)}'`);mplayer.style.setProperty('--ttmsg2', `'${toMin(aud.duration)}'`);mplayer.style.setProperty('--prog',`${100 * aud.currentTime / aud.duration}%`);});
        mplayer.onclick = () => {if(clickIdx === 1) aud.paused ? aud.play() : aud.pause();if(clickIdx === 2) aud.currentTime = progChg;};
        mplayer.onmousemove = (e) => {let size = parseInt(window.getComputedStyle(mplayer).getPropertyValue('--size')), ww = mplayer.offsetWidth, hh = mplayer.offsetHeight;clickIdx = e.offsetY > hh/1.5 ? 2 : (e.offsetX > (ww - size)/2 && e.offsetX < (ww + size)/2 && e.offsetY < hh/1.5 ? 1 : 0);mplayer.style.cursor = cursors;if(clickIdx > 1) progChg = aud.duration * e.offsetX / ww;};
})();
</script>
<br><br><br><br>

宁静 发表于 2023-5-24 21:24

纯css+js代码编辑播放器和雪花

宁静 发表于 2023-5-24 21:24

温馨提示:手机手动播放

小沫 发表于 2023-5-24 21:39

六月飞雪的啊,好漂亮啊

宁静 发表于 2023-5-24 21:41

小沫 发表于 2023-5-24 21:39
六月飞雪的啊,好漂亮啊

小沫晚上好{:10_401:}

沉默 发表于 2023-5-24 21:44

宁静 发表于 2023-5-24 21:24
温馨提示:手机手动播放

这雪景漂亮{:9022:}

沉默 发表于 2023-5-24 21:44

小沫 发表于 2023-5-24 21:39
六月飞雪的啊,好漂亮啊

小沫冲在我前面了{:9001:}

宁静 发表于 2023-5-24 21:45

沉默 发表于 2023-5-24 21:44
小沫冲在我前面了

你速度也是快的

沉默 发表于 2023-5-24 21:47

宁静 发表于 2023-5-24 21:45
你速度也是快的

就是,喜欢这个图

墨羽 发表于 2023-5-24 21:59

看着雪花纷纷飘落,我望着天空追问着,为什么这么好看好听!{:9001:}
页: [1] 2 3
查看完整版本: 殇雪 歌手:云菲菲