1. 程式人生 > 程式設計 >JavaScript實現櫥窗展示效果

JavaScript實現櫥窗展示效果

本文例項為大家分享了實現櫥窗展示效果的具體程式碼,供大家參考,具體內容如下

1.先搭架子

*www.cppcns.com {
            margin: 0;
            padding: 0;
        }
        
        .box {
            width: 800px;
            height: 190px;
            border: 1px solid #000;
            margin: 100px auto;
        }
        
        ul {
            list-style: none;
            display: flex;
        }
        
        ul img {
            vertical-align: top;
        }
        
        .progress {
            width: 100%;
            height: 30px;
            background: #ccc;
        }
        
        .progress>.line {
     http://www.cppcns.com
width: 100px; height: 100%; background: orange; border-radius: 15px; }
<div class="box">
        <ul>
            <li>
                <img src="images/img1.jpg" alt="Script實現櫥窗展示效果">
            </li>
            <li>
                <img src="images/img2.jpg" alt="JavaScript實現櫥窗展示效果">
            </li>
            <li>
                <img src="images/img3.jpg" alt="JavaScript實現櫥窗展示效果">
            </li>
            <li>
                <img src="images/img4.jpg" alt="JavaScript實現櫥窗展示效果">
            </li>
            <li>
                <img src="images/img5.jpg" alt="JavaScript實現櫥窗展示效果">
            </li>
            <li>
                <img src="images/img6.jpg" alt="JavaScript實現櫥窗展示效果">
            </li>
            <li>
                <img src="images/img7.jpg" alt="JavaScript實現櫥窗展示效果">
            </li>
            <li>
                <img src="images/img8.jpg" alt="JavaScript實現櫥窗展示效果">
            </li>
            <li>
                <img src="images/img9.jpg" alt="JavaScript實現櫥窗展示效果">
            </li>
            <li>
                <img src="images/img10.jpg" alt="JavaScript實現櫥窗展示效果">
            </li>
        </ul>
        <div class="progress">
            <div class="line"></div>
        </div>
</div>

2.邏輯部分

拿到需要操作的元素

計算ul的寬度

設定ul的寬度

計算滾動條的寬度

設定滾動條的寬度

監聽滑鼠按下的事件

  • 拿到滾動條當前的位置
  • 拿到滑鼠在滾動條中按下的位置

監聽滑鼠移動事件

  • 拿到滑鼠在滾動條中移動之後的位置
  • 計算偏移位
  • 安全校驗
  • 重新設定滾動條的位置
  • 計算圖片的滾動距離
  • 重新設定圖片的位置
 .box {
           overflow: hidden;
        }
        
        ul {
            position: relative;
        }
        
        .progress {
            position: relative;
        }
        
        .progress>.line {
            position: absolute;
            left: 0;
            top: 0;
  }
//1.拿到需要操作的元素
const oUl = document.querySelector("ul");
const oItems = oUl.querySelectorAll("li");
const oProgress = document.querySelector(".progress");
const oLine = document.querySelector(".line");
const oBox = document.querySelector(".box");
 
//2.計算ul的寬度
const ulWidth = oItems[0].offsetWidth * oItems.length;
 
//3.設定ul的寬度
oUl.style.width = ulWidth + 'px';
 
//4.計算滾動條的寬度
// 滾動條的寬度/滾動條滾動範圍 = 容器的寬度/內容的範圍
const progressWidth = oProgress.offsetWidth;
const boxWidth = oBox.offsetWidth;
const lineWidth = boxWidth / ulWidth * progressWidth;
 
//5.設定滾動條的寬度
oLine.style.width = lineWidth + 'px';
// 計算滾動條最大能夠滾動的範圍
const maxLineX = progressWidth - lineWidth;
// 計算圖片最大能夠滾動的範圍
const maxImgX = boxWidth - ulWidth;
 
 //6.監聽滑鼠按下的事件
oLine.onmousedown = function(e) {

e = e || window.e;
//a.拿到滾動條當前的位置
let begin = parseFloat(oLine.style.left) || 0;
 
//HTejxDb.拿到滑鼠在滾動條中按下的位置
let mouseX = e.pageX - oBox.offsetLeft;
 
//7.監聽滑鼠移動事件
oLine.onmousemove = function(e) {
e = e || window.e;
//c.拿到滑鼠在滾動條中移動之後的位置
let moveMouseX = e.pageX - oBox.offsetLeft;
 
//d.計算偏移位
let offsetX = moveMouseX - mouseX + begin;
 
//e.安全校驗
offsetX = offsetX < 0 ? 0 : offsetX;
offsetX = offsetX > maxLineX &http://www.cppcns.com#63; maxLineX : offsetX;
 
 //f.重新設定滾動條的位置
oLine.style.left = offsetX + 'px';
 
//g.計算圖片的滾動距離
// 滾動條滾動的距離 / 滾動條最大能夠滾動的範圍 = 圖片滾動的距離 / 圖片最大能夠滾動的範圍
// 滾動條滾動的距離 / 滾動條最大能夠滾動的範圍 * 圖片最大能夠滾動的範圍 = 圖片滾動的距離
const imgOffsetX = offsetX / maxLineX * maxImgX;
 
// h.重新設定圖片的位置
      oUl.style.left = imgOffsetX + "px";
            };
        };
        document.onmouseup = function() {
            oLine.onHTejxDmousemove = null;
}

JavaScript實現櫥窗展示效果

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支援我們。