JS怎么實現(xiàn)音量控制拖動-創(chuàng)新互聯(lián)

這篇文章將為大家詳細講解有關JS怎么實現(xiàn)音量控制拖動,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

十余年的晉寧網(wǎng)站建設經(jīng)驗,針對設計、前端、開發(fā)、售后、文案、推廣等六對一服務,響應快,48小時及時工作處理。網(wǎng)絡營銷推廣的優(yōu)勢是能夠根據(jù)用戶設備顯示端的尺寸不同,自動調(diào)整晉寧建站的顯示方式,使網(wǎng)站能夠適用不同顯示終端,在瀏覽器中調(diào)整網(wǎng)站的寬度,無論在任何一種瀏覽器上瀏覽網(wǎng)站,都能展現(xiàn)優(yōu)雅布局與設計,從而大程度地提升瀏覽體驗。成都創(chuàng)新互聯(lián)公司從事“晉寧網(wǎng)站設計”,“晉寧網(wǎng)站推廣”以來,每個客戶項目都認真落實執(zhí)行。

具體內(nèi)容如下

描述:

JS——實現(xiàn)音量控制拖動

    1)、有底條,有拖拽按鈕
    2)、設置最小和大值
    3)、拖動定位后,拋出事件當前的所在值

效果:

JS怎么實現(xiàn)音量控制拖動

實現(xiàn):

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Title</title>
  <style>
    #all {
      width: 500px;
      height: 86px;
      margin: 100px auto;
      position: relative;
    }
 
    #bar {
      width: 500px;
      height: 20px;
      border-radius: 10px;
      background: #9acfea;
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      margin: auto;
      cursor: pointer;
    }
 
    #box {
      width: 30px;
      height: 30px;
      background: #ec971f;
      position: absolute;
      bottom: 0;
      top: 0;
      margin: auto 0;
      border-radius: 50%;
      cursor: pointer;
      transition: left 0.1s linear 0s;
    }
  </style>
</head>
<body>
  <div id="all">
    <p>當前位置0%</p>
    <div id="bar">
      <div id="box"></div>
    </div>
  </div>
<script>
 
  var all=document.getElementById("all");//容器
  var p=document.querySelector("p");//進度百分比
  var bar=document.getElementById("bar");//進度顯示條
  var box=document.getElementById("box");//進度按鈕
 
  var boxL,newL,moveL,mouseX,left;
  var cha = bar.offsetWidth - box.offsetWidth;
  var index=0;//標記狀態(tài)
 
  var evt=new Event("change");//本身的事件
  init();
  function init() {
    box.addEventListener("mousedown",mouseDownclickHandler);
    document.addEventListener("mousemove",mouseMoveclickHandler)
    document.addEventListener("mouseup",mouseUpclickHandler);
    document.addEventListener("change",changeHandler);
    bar.addEventListener("click",clickHandler);
  }
 
  function mouseDownclickHandler(e) {
    index=1;
    boxL=box.offsetLeft;
    mouseX=e.clientX;//鼠標按下拖動的位置
  }
 
  function mouseMoveclickHandler(e) {
    if(index===1){
      moveL=e.clientX-mouseX;//鼠標移動
      newL=boxL+moveL;//left值
 
      //判斷最小值與大值
      if(newL<0){
        newL = 0;
      }
      if(newL>=cha){
        newL=cha;
      }
      // 改變left值
      box.style.left = newL + 'px';
      // 計算比例
      var bili = newL / cha * 100;
      p.textContent = '當前位置' + Math.ceil(bili) + '%';
      evt.elem=this;//當前指向 對象
      document.dispatchEvent(evt);//朝誰發(fā)送 拋發(fā)
    }
  }
 
  function mouseUpclickHandler(e) {
    index=0;
    evt.elem=this;//當前指向 對象
    document.dispatchEvent(evt);//朝誰發(fā)送 拋發(fā)
  }
 
  function clickHandler(e) {
    left = e.clientX-all.offsetLeft-box.offsetWidth/2;
    if(left<0){
      left=0;
    }
    if(left>=cha){
      left=cha;
    }
    box.style.left=left+'px';
    bili=left/cha*100;
    p.innerHTML='當前位置'+ Math.ceil(bili)+'%';
    evt.elem=this;//當前指向 對象
    document.dispatchEvent(evt);//朝誰發(fā)送 拋發(fā)
  }
 
  function changeHandler(e) {
    console.log(e);
  }
</script>
</body>
</html>

關于“JS怎么實現(xiàn)音量控制拖動”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

當前名稱:JS怎么實現(xiàn)音量控制拖動-創(chuàng)新互聯(lián)
鏈接URL:http://muchs.cn/article6/dsgcog.html

成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供電子商務、軟件開發(fā)、域名注冊關鍵詞優(yōu)化、全網(wǎng)營銷推廣響應式網(wǎng)站

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉載內(nèi)容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉載,或轉載時需注明來源: 創(chuàng)新互聯(lián)

網(wǎng)站優(yōu)化排名