宁静 发表于 2022-10-8 12:59

一直很安静 -- 【翻唱:浅笑 】帖赠:浅笑

本帖最后由 宁静 于 2023-2-22 14:40 编辑 <br /><br /><style>
      #papa { left: -210px; width: 1280px; height: 704px; top:150px; background: #ccc url('https://pan.365.tf/uploads/lxx/20230222/1000.jpg') no-repeat center/cover; box-shadow: 3px 3px 20px #000; display: grid; place-items: center; position: relative; z-index: 1; }
      #mplayer { position: absolute; left: 800px; top: 500px; width: 300px; height: 80px; user-select: none; display: grid; place-items: center; cursor: pointer; }
      #mplayer:hover #btnwrap, #mplayer:hover #prog { transform: translateY(var(--yy)); }      
      #mplayer:hover #btnwrap { background: linear-gradient(to top right, red, green); border-radius: 50%; opacity: .75; }
      #btnwrap, #prog { position: absolute; display: grid; place-items: center;transition: .5s; }
      #btnwrap { --yy: -15px; width: 40px; height: 40px; transform: rotate(45deg); border: 1px solid tan; border-radius: 6px; opacity: .25; }
      #btnplay { width: 20px; height: 20px; background: #eee; clip-path: polygon(0 0, 0% 100%, 100% 50%); }
      #btnpause { width: 2px; height: 20px; border-style: solid; border-width: 0px 4px; border-color: transparent #eee; display: none; }
       #prog { --yy: 20px; width: 240px; height: 16px; border-radius: 10px; background: linear-gradient(90deg, rgba(0,0,0,.45), rgba(255,55,0,5) 100%, transparent 0); border: 1px solid lightgreen; font: normal 14px/16px sans-serif; color: snow; }
       #lrc { position: absolute; top: 150px;left: 650px; font: bold 2.5em sans-serif;font-family:微软雅黑; filter:drop-shadow(#FFFFFF 1px 0 0)drop-shadow(#FFFFFF 0 1px 0)drop-shadow(#FFFFFF -1px 0 0) drop-shadow(#FFFFFF 0 -1px0);color: transparent; letter-spacing: 2px; background: linear-gradient(50deg, #000080, #ff0000, #000000, #00f000) 100% 100% / 200% 200%; background-clip: text; -webkit-background-clip: text; }

#dt1{ position: absolute; width: 451px; height: 249px; top: 10px; left: 680px; }
       #plane1{position: absolute;left: 0px;top: 0;width: 80px;offset-distance: 0;offset-path: path("M0 420 Q1000 640, 1060 620 T1260 420");animation: move 8s linear infinite;}
       #plane {position: absolute;left: 60px;top: 0;width: 80px;offset-distance: 0;offset-path: path("M0 420 Q900 540, 560 520 T0 420");animation: move 8s linear infinite;}
   
      @keyframes bgMove1 { from { background-position: 0 0; } to { background-position: -100% 0; } }
      @keyframes bgMove2 { from { background-position: 0 0; } to { background-position: -100% 0; } }
      @keyframes move { to { offset-distance: 100%;} }
</style>
<div id="papa">
          <img id="dt1" src="https://pan.365.tf/uploads/lxx/20230222/4n.gif" alt="" />
          <img id="plane1" src="https://pan.365.tf/uploads/lxx/20230222/fj.png" alt="" />
          <img id="plane" src="https://pan.365.tf/uploads/lxx/20230222/dzfj.png" alt="" />
      <div id="lrc">一直很安静</div>
      <div id="mplayer">
                <div id="btnwrap"><span id="btnplay"></span><span id="btnpause"></span></div>
                <div id="prog">00:00 | 00:00</div>
      </div>
</div>
<script>
let lrcAr = [
                ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ,
        ];
let mKey = 0, mSeek = false, mFlag = true;
let aud = new Audio();

aud.src = 'https://pan.365.tf/uploads/lxx/20230222/yzhaj.mp3';
aud.autoplay = true;
aud.loop = true;
btnwrap.onclick = () => aud.paused ? aud.play() : aud.pause();
prog.onclick = (e) => aud.currentTime = aud.duration * e.offsetX / prog.offsetWidth;
aud.addEventListener('pause', () => mState());
aud.addEventListener('play', () => mState());
aud.addEventListener('seeked', () => calcKey());

aud.addEventListener('timeupdate', () => {
         prog.style.background= 'linear-gradient(90deg,rgba(0,0,0,.45), rgba(255,55,0,5) ' + aud.currentTime / aud.duration * 100 + '%, transparent 0)';
      prog.innerText = toMin(aud.currentTime) + ' | ' + toMin(aud.duration);
      for(j=0; j<lrcAr.length; j++) {
                if(aud.currentTime >= lrcAr) {
                        if(mKey === j) showLrc(lrcAr);
                        else continue;
                }
      }
});

let mState = () => aud.paused ? (btnplay.style.display = 'block', btnpause.style.display = 'none', lrc.style.animationPlayState = 'paused') : (btnplay.style.display = 'none', btnpause.style.display = 'block', lrc.style.animationPlayState = 'running');

let showLrc = (time) => {
      lrc.style.animation = (mFlag ? 'bgMove1 ' : 'bgMove2 ') + time + 's linear forwards';
      lrc.innerHTML = lrcAr;
      mKey += 1;
      mFlag = !mFlag;
}

let calcKey = () => {
      for(j = 0; j < lrcAr.length; j ++) {
                if(aud.currentTime <= lrcAr) {
                        mKey = j - 1;
                        break;
                }
      }
      if(mKey <0) mKey = 0;
      let mtime = lrcAr - (aud.currentTime - lrcAr);
      showLrc(mtime);
}

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;
}
</script>
<br><br><br><br><br><br><br><br><br>

宁静 发表于 2022-10-8 13:01

@浅笑

笑笑,图图不漂亮,就听你的歌吧,欣赏好声音{:10_401:}

苍野 发表于 2022-10-8 15:21

赶巧,先听为快

小沫 发表于 2022-10-8 16:03

浅浅翻唱,小跑来听听{:10_412:}

小沫 发表于 2022-10-8 16:10

很美丽的海边风景线
有纸飞机,有海鸥,有海浪,还有美女呢{:9001:}

泡沫 发表于 2022-10-8 16:48

图美 歌好听{:12_689:}

瞳萤 发表于 2022-10-8 19:09

宁静有心了,精心的制作,浅浅美妙的歌声~

蜻蜓 发表于 2022-10-8 20:03

强强联手!赞赞赞{:10_402:}

撒哈拉的雨 发表于 2022-10-8 21:26

这个是透明播放器,我喜欢的{:10_402:}

撒哈拉的雨 发表于 2022-10-8 21:27

字幕跟随吻合,时间控制的比较好
页: [1] 2 3
查看完整版本: 一直很安静 -- 【翻唱:浅笑 】帖赠:浅笑