小辣椒 发表于 2022-9-17 21:40

爱你在心口难开(学习黑黑新教程)


<style>
      #papa { left: -344px; width: 1280px; height: 700px; top:150px; background: #ccc url('https://wj.zp68.com/lxx/yunhua/2022/09/12/F.gif') no-repeat center/cover; box-shadow: 3px 3px 20px #000; display: grid; place-items: center; position: relative; z-index: 1; }
      #mplayer { position: absolute; left: 714px; top: 540px; 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: 300px; height: 16px; border-radius: 10px; background: linear-gradient(90deg, orange, red 100%, transparent 0); border: 1px solid gray; font: normal 14px / 16px sans-serif; color: #1551C8; opacity: .75; }
      #lrc { position: absolute; top: 300px;left: 714px;font: bold 2em sans-serif; color: transparent; letter-spacing: 2px; background: linear-gradient(-90deg, darkred, pink) 100% 100% / 200% 200%; background-clip: text; -webkit-background-clip: text; }
      #mpic { position: absolute; width: 70%; height: 70%;left: 214px;top: 200px; mix-blend-mode: multiply; }
      @keyframes bgMove1 { from { background-position: 0 0; } to { background-position: -100% 0; } }
      @keyframes bgMove2 { from { background-position: 0 0; } to { background-position: -100% 0; } }
</style>


<div id="papa">
      <img id="mpic" src="https://pic.imgdb.cn/item/6325cd0016f2c2beb15e16d8.png" alt="" />
      <div id="lrc">花潮论坛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://wj.zp68.com/lxx/yunhua/2022/09/12/slu.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, green, red ' + aud.currentTime / aud.duration * 100 + '%, snow 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><br><br><br>

小辣椒 发表于 2022-9-17 21:41

@马黑黑

黑黑再爱一次算了{:4_170:}

做图太慢了

而且越急越做不好

小辣椒 发表于 2022-9-17 21:41

现成的图图,现成的歌词,就是加了个png

小辣椒 发表于 2022-9-17 21:42

主要学会这个歌词的制作方法

小辣椒 发表于 2022-9-17 21:43

学习黑黑的精彩分享{:4_187:}

马黑黑 发表于 2022-9-17 21:47

小辣椒 发表于 2022-9-17 21:41
@马黑黑

黑黑再爱一次算了


{:4_172:}

绿叶清舟 发表于 2022-9-17 21:49

图图清新,漂亮,开吧开吧{:4_189:}

红芍药 发表于 2022-9-17 22:02

辣椒好腻害,好制作。{:4_199:}{:4_204:}

红芍药 发表于 2022-9-17 22:05

辣椒,你把头发上那钻借我一下,是怎么动态的。{:4_204:}{:4_204:}

红影 发表于 2022-9-18 08:47

漂亮,亲爱的就是聪明,这个同步特别漂亮{:4_187:}

小辣椒 发表于 2022-9-18 11:13

马黑黑 发表于 2022-9-17 21:47


昨天偷懒了{:4_170:}

小辣椒 发表于 2022-9-18 11:14

绿叶清舟 发表于 2022-9-17 21:49
图图清新,漂亮,开吧开吧

清舟哈哈~~~一起开心{:4_173:}

小辣椒 发表于 2022-9-18 11:15

红芍药 发表于 2022-9-17 22:02
辣椒好腻害,好制作。

问好芍药,小辣椒还在学习中的{:4_173:}

小辣椒 发表于 2022-9-18 11:15

红芍药 发表于 2022-9-17 22:05
辣椒,你把头发上那钻借我一下,是怎么动态的。

哦,这个是我软件制作的动态图,拿不下来的{:4_170:}

小辣椒 发表于 2022-9-18 11:16

红影 发表于 2022-9-18 08:47
漂亮,亲爱的就是聪明,这个同步特别漂亮

昨天急着下就前面做过的测试一下这个加餐歌词的{:4_170:}

东篱闲人 发表于 2022-9-18 11:22

这个飞鸟也是路径代码吗?{:5_115:}

马黑黑 发表于 2022-9-18 11:37

小辣椒 发表于 2022-9-18 11:13
昨天偷懒了

挺好挺好

小辣椒 发表于 2022-9-18 11:39

东篱闲人 发表于 2022-9-18 11:22
这个飞鸟也是路径代码吗?

老头这个是我做的动图

小辣椒 发表于 2022-9-18 11:41

马黑黑 发表于 2022-9-18 11:37
挺好挺好

黑黑总是这么宽容,这个图图,歌曲都是前面做过的,昨天是急着下就用了旧的测试一下那个加餐歌词

马黑黑 发表于 2022-9-18 11:42

小辣椒 发表于 2022-9-18 11:41
黑黑总是这么宽容,这个图图,歌曲都是前面做过的,昨天是急着下就用了旧的测试一下那个加餐歌词

那不是很好嘛
页: [1] 2
查看完整版本: 爱你在心口难开(学习黑黑新教程)