马黑黑 发表于 2021-11-20 21:30

加林森 发表于 2021-11-20 20:18


继续继续

加林森 发表于 2021-11-20 21:32

本帖最后由 加林森 于 2022-2-16 17:26 编辑 <br /><br />马黑黑 发表于 2021-11-20 21:30
继续继续
哈哈哈哈,我们就继续吧。

<style>

#bigPa { position: relative; left:- 100px; width: 800px; height: 480px; background:#333 url('https://pic.imgdb.cn/item/620c62922ab3f51d91937c7a.jpg') no-repeat center/cover; box-shadow: 0 0 0 2px #111;}
#bigPa { position: relative; left:- 100px; width: 800px; height: 480px; background:#333 url('https://pic.imgdb.cn/item/620c62922ab3f51d91937c7a.jpg') no-repeat center/cover; box-shadow: 0 0 0 2px #111;}
#gcDiv { width: 500px; float: right; column-count:2; color: #eee; font-size: 1em; text-shadow: 1px 1px 1px #111; }
#waiDiv { margin:10px; float:right; padding:8px; width:400px; background:#696969; border-radius:10px; box-shadow:2px 2px 4px #000; display:flex; flex-direction:column; position:relative; }
#audDiv { width:100%; display:flex; flex-direction:row; align-items:center; font-size:10px; position: relative; }
#add1 { margin-left: 12px; background:#eee; text-align:center; width:20px; height:20px; line-height:20px; border-radius:50%; cursor:pointer; }
#add1:hover { color: red; }
#mLiDiv { margin-top: 10px; background:#eee; color:#000; min-height:100px; padding:10px; border:1px solid olive; font-size:14px; column-count: 2;}
#mLiDiv a { text-decoration: none; cursor:pointer; }
#mLiDiv a:hover { color:red; }
#prompt { position:absolute; left:200px; top:50px; width:400px; padding:6px 12px; background:silver; font-size:12px; display:none; box-shadow:1px 1px 1px #666; border-radius:2px; }
#prompt input { outline:none; }
#prompt input { margin:4px;padding:4px; width:392px; }
#prompt input { border-radius:4px; cursor:pointer;border:1px solid gray; border-radius:3px; box-shadow: 1px 1px 2px #444; }
#audDiv input, #audDiv input { cursor:pointer; }
#paDiv { margin: auto; width: 220px; display: flex; align-items: center; border: 1px solid olive; border-radius: 8px 0px 8px 0px; background: rgba(0,0,0,.8); box-shadow: 1px 1px 2px #000; position: relative; }
#jindu { position: relative; width: 200px; height: 8px; line-height: 8px; font-size: 10px; color: #eee; text-align: center; background: linear-gradient(90deg, olive, green) no-repeat; background-size: 8px 0px; cursor: pointer; }
#btn-ro { width: 20px; height: 20px; line-height: 20px; font-size: 12px; background: linear-gradient(blue, silver, red); outline:none; color: white; border-radius: 50%; text-align: center; cursor: pointer; animation: rol linear 2s infinite; }
#btn-ro:hover { opacity: 0.8; }
#btn-ro:active { opacity: 1; }
@keyframes rol { to { transform:rotate(360deg); } }
</style>

<div id="waiDiv">
      <div id="audDiv">
                <div id="paDiv">
                        <div id="btn-ro">·</div>
                        <div id="jindu"><div id="jd-go"></div></div>
                </div>
                <input id="muted" type="checkbox" onclick="aud.muted = this.checked ? true : false">静音
                <input id="dqxh" type="radio" name="rad" checked="checked" onclick="howplay()" />单曲
                <input id="lhbf" type="radio" name="rad" onclick="howplay()" />轮播
                <div id="add1">+</div>
      </div>
      <div id="mLiDiv"></div>
      <div id="prompt">
      <div>添歌</div>
                <input type="text" id="mName" placeholder="歌曲名称" /><br />
                <input type="text" id="mUrl" placeholder="歌曲地址" /><br />
                <div style="text-align:center;">
                        <input id="subMe" type="button" value=" 添加 " />
                        <input id="cancelMe" type="button" value=" 算了 " />
                </div>
      </div>
</div>

<script>
var muAr = [
      ["https://www.joy127.com/url/88664.mp3","旷野的呼唤"],
      ["https://www.joy127.com/url/88658.mp3","兰亭序"],
      ["https://www.joy127.com/url/88656.mp3","成瘾成疯又成魔(R7版)"],
      ["https://www.joy127.com/url/88654.mp3","分开的那天"]
];

var btn = document.getElementById('btn-ro');
var jindu = document.getElementById('jindu');
var aud = document.getElementById('myPlayer');
var mLi = document.getElementById('mLiDiv');
var mAdd = document.getElementById('add1');
var prom = document.getElementById('prompt');
var cancelMe = document.getElementById('cancelMe');
var subMe = document.getElementById('subMe');
var dqxh = document.getElementById('dqxh');
var lhbf = document.getElementById('lhbf');
var aud = document.createElement('audio');
aud.loop = true;
var playIdx = 0; //当前曲索引
if(aud.paused) btn.style.animationPlayState="paused";
//写歌单
var str = "";
for(j=0; j<muAr.length; j++) {
      str += (j+1) + ".<a id='list" + j + "' onclick='iPlay(" + j + ");howplay();' >" + muAr + "</a><br />";
}
mLi.innerHTML += str;

function iPlay(idx){ //播放函数
      playIdx = idx;
      aud.src = muAr;
      aud.play();
      aud.addEventListener('timeupdate', tmMsg, true);
      aud.addEventListener('ended', function() { btn.style.animationPlayState="paused"; }, true);
      btn.style.animationPlayState="running";
      nameRed(playIdx);
}

function howplay(){ //单曲&轮播处理
      dqxh.checked ? aud.loop = true : (aud.loop = false,playNext(),aud.addEventListener('ended',playNext,false));
      prom.style.display = "none";
}

function playNext(){ //处理下一首
      if(aud.paused) iPlay(playIdx);
      playIdx += 1;
      if(playIdx >= muAr.length) playIdx = 0;
}

function nameRed(){ //歌单着色
      for(k=0;k<muAr.length;k++){
                let listId = "list" + k;
                document.getElementById(listId).style.removeProperty("color");
      }
      listId = "list" + playIdx;
      document.getElementById(listId).style.color = "red";
}

function tmMsg(){ //进度条
      let auT = Math.floor(aud.duration - aud.currentTime);
      let auM = auT / 60;
      let auMs = parseInt(auM);
      if (auMs <10) auMs = "0" + auMs;
      let auS = auT % 60;
      let auSs = Math.round(auS);
      if (auSs < 10) auSs = "0" + auSs;
      let jd = (100*aud.currentTime)/aud.duration;
      if(jd>0) {
                jindu.innerHTML = "- " + auMs +":" + auSs;
                jindu.style.backgroundSize = jd+ "% 8px";
      }
}

jindu.onclick = function(){ //进度控制
      let w = offset(jindu,"left");
      let x = (event.clientX - w) * aud.duration / jindu.clientWidth;
      aud.currentTime = x;
}

function offset(obj,direction){//获取元素总偏移量
      let offsetDir = "offset" + direction.toUpperCase()+direction.substring(1);
      let realNum = obj;
      let positionParent = obj.offsetParent;
      while(positionParent != null){
                realNum += positionParent;
                positionParent = positionParent.offsetParent;
      }
      return realNum;
}

btn.onclick = function(){ //光盘按钮点击事件
      aud.paused ? (aud.play(), btn.style.animationPlayState="running") : (aud.pause(), btn.style.animationPlayState="paused");
}

mAdd.onclick = function(){ prom.style.display = "block"; } //呼出加歌界面
cancelMe.onclick = function(){ prom.style.display = "none"; } //放弃加歌

subMe.onclick = function(){ //加歌并播放新歌
      let uri = document.getElementById('mUrl');
      let name = document.getElementById('mName');
      let tnum = muAr.length;
      let str1 = uri.value.trim();
      let str2 = name.value.trim();
      if(str1 !="" && str2 != ""){
                muAr = ;
                mLi.innerHTML += (tnum+1) + ".<a id='list" + tnum + "' onclick='iPlay(" + tnum + ");howplay();' >" + str2 + "</a><br />";
                iPlay(tnum);
                howplay();
                uri.value = "";
                name.value = "";
      }
      prom.style.display = "none";
}
//自动播放(默认播放第一首)
iPlay(playIdx);

</script>

马黑黑 发表于 2021-11-20 21:39

队长停住

加林森 发表于 2021-11-20 21:49

马黑黑 发表于 2021-11-20 21:39
队长停住

为啥?

马黑黑 发表于 2021-11-20 21:49

加林森 发表于 2021-11-20 21:49
为啥?

注意调养

小满 发表于 2021-11-20 21:51

才九点多呢,队长

加林森 发表于 2021-11-20 21:51

马黑黑 发表于 2021-11-20 21:49
注意调养

嗯嗯

加林森 发表于 2021-11-20 21:52

小满 发表于 2021-11-20 21:51
才九点多呢,队长

小满满来啦。我说的是昨天晚上,太累了。

红影 发表于 2021-11-21 11:33

加林森 发表于 2021-11-20 19:40
今天在就好啊。

习惯了每天上来看看{:4_204:}

加林森 发表于 2021-11-21 11:35

红影 发表于 2021-11-21 11:33
习惯了每天上来看看

好习惯。{:4_171:}

红影 发表于 2021-11-21 13:14

加林森 发表于 2021-11-21 11:35
好习惯。

这段时间有点忙,有时完全没时间上来,但只要能抽一会空,也会窜上来的{:4_173:}

加林森 发表于 2021-11-21 13:32

红影 发表于 2021-11-21 13:14
这段时间有点忙,有时完全没时间上来,但只要能抽一会空,也会窜上来的

知道的知道的,年底都很忙的。

马黑黑 发表于 2021-11-21 19:51

忙忙更健康

加林森 发表于 2021-11-21 19:53

马黑黑 发表于 2021-11-21 19:51
忙忙更健康

是的是的,忙起来才有钱钱的。

马黑黑 发表于 2021-11-21 19:54

加林森 发表于 2021-11-21 19:53
是的是的,忙起来才有钱钱的。

钱钱不是多多益善

加林森 发表于 2021-11-21 20:03

马黑黑 发表于 2021-11-21 19:54
钱钱不是多多益善

有钱才好,无钱寸步难行。

马黑黑 发表于 2021-11-21 22:06

加林森 发表于 2021-11-21 20:03
有钱才好,无钱寸步难行。

是的是的,你讲的有道理

加林森 发表于 2021-11-21 23:18

马黑黑 发表于 2021-11-21 22:06
是的是的,你讲的有道理

不是我说的有道理,没有钱你怎么活啊?

加林森 发表于 2021-11-22 00:03

查岗开始

加林森 发表于 2021-11-22 00:05

谁还在
页: 1 [2] 3 4
查看完整版本: 不行了,坚持不住了,睡觉去!