This article shares the specific code of JavaScript to achieve the window display effect for your reference. The specific content is as follows 1. Build the scaffolding first * { 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 { width: 100px; height: 100%; background: orange; border-radius: 15px; } <div class="box"> <ul> <li> <img src="images/img1.jpg" alt=""> </li> <li> <img src="images/img2.jpg" alt=""> </li> <li> <img src="images/img3.jpg" alt=""> </li> <li> <img src="images/img4.jpg" alt=""> </li> <li> <img src="images/img5.jpg" alt=""> </li> <li> <img src="images/img6.jpg" alt=""> </li> <li> <img src="images/img7.jpg" alt=""> </li> <li> <img src="images/img8.jpg" alt=""> </li> <li> <img src="images/img9.jpg" alt=""> </li> <li> <img src="images/img10.jpg" alt=""> </li> </ul> <div class="progress"> <div class="line"></div> </div> </div> 2. Logical part Get the element that needs to be operated Calculate the width of ul Set the width of the ul Calculate the scroll bar width Set the scroll bar width Listen for mouse click events
Listening for mouse movement events
.box { overflow: hidden; } ul { position: relative; } .progress { position: relative; } .progress>.line { position: absolute; left: 0; top: 0; } //1. Get the element to be operated 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. Calculate the width of ul const ulWidth = oItems[0].offsetWidth * oItems.length; //3. Set the width of ul oUl.style.width = ulWidth + 'px'; //4. Calculate the width of the scroll bar // Scroll bar width / scroll bar scroll range = container width / content range const progressWidth = oProgress.offsetWidth; const boxWidth = oBox.offsetWidth; const lineWidth = boxWidth / ulWidth * progressWidth; //5. Set the scroll bar width oLine.style.width = lineWidth + 'px'; // Calculate the maximum scrolling range of the scroll bar const maxLineX = progressWidth - lineWidth; // Calculate the maximum scrollable range of the image const maxImgX = boxWidth - ulWidth; //6. Listen for mouse pressed events oLine.onmousedown = function(e) { e = e || window.e; //a. Get the current position of the scroll bar let begin = parseFloat(oLine.style.left) || 0; //b. Get the position where the mouse is pressed in the scroll bar let mouseX = e.pageX - oBox.offsetLeft; //7. Listen for mouse movement events oLine.onmousemove = function(e) { e = e || window.e; //c. Get the position of the mouse after moving in the scroll bar let moveMouseX = e.pageX - oBox.offsetLeft; //d. Calculate the offset let offsetX = moveMouseX - mouseX + begin; //e. Safety check offsetX = offsetX < 0 ? 0 : offsetX; offsetX = offsetX > maxLineX ? maxLineX : offsetX; //f. Reset the scroll bar position oLine.style.left = offsetX + 'px'; //g. Calculate the scrolling distance of the image // Scroll bar scrolling distance / scroll bar maximum scrolling range = image scrolling distance / image maximum scrolling range // Scroll bar scrolling distance / scroll bar maximum scrolling range * image maximum scrolling range = image scrolling distance const imgOffsetX = offsetX / maxLineX * maxImgX; // h. Reset the image position oUl.style.left = imgOffsetX + "px"; }; }; document.onmouseup = function() { oLine.onmousemove = null; } The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: The most detailed installation and configuration of redis in docker (with pictures and text)
>>: The pitfall of MySQL numeric type auto-increment
1. Enable Prometheus telemetry data By default, t...
Preface: rm under Linux system is irreversible. T...
Table of contents After creating a container loca...
The local environment is Windows 10 + WSL2 (Ubunt...
Table of contents 10,000 pieces of data were lost...
Table of contents 1. Select All 2. Increase or de...
<br />According to statistics, the average s...
Table of contents Packaging, launching and optimi...
Table of contents 1. Vue Overview Vue official we...
The SQL query statement execution order is as fol...
Table of contents Step 1: Update Packages on Cent...
You can install Docker and perform simple operati...
This article shares the specific code of Vue.js t...
The following two errors were encountered when co...
Special symbols Named Entities Decimal encoding S...