js 寫一個捲軸

來源:互聯網
上載者:User

標籤:20px   nbsp   name   script   utf-8   document   ima   event   width   

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>自己練習寫一個捲軸</title>
<style>
*{
margin:0;
padding: 0;
}
.scroll{
margin:200px;
width:500px;
height:5px;
background: #ccc;
position: relative;
}
.bar{
width:10px;
height:20px;
background: #369369;
position: absolute;
top:-7px;
left:0;
cursor: pointer;
}
.mask{
position: absolute;
left:0;
top:0;
background: #369369;
width:0px;
height:5px;
}
</style>
</head>
<body>
<div class="scroll" id="scroll">
<div class="bar" id="bar"></div>
<div class="mask" id="mask"></div>
</div>
<p></p>
<script>
window.onload = function(){
var scroll = document.getElementById(‘scroll‘);
var bar = document.getElementById(‘bar‘);
var mask = document.getElementById(‘mask‘);
var ptxt = document.getElementsByTagName(‘p‘)[0];
bar.onmousedown = function (event){
// Event 對象代表事件的狀態,比如事件在其中發生的元素、鍵盤按鍵的狀態、滑鼠的位置、滑鼠按鍵的狀態。
// 事件通常與函數結合使用,函數不會在事件發生前被執行!
var event = event || window.event;
//相對於瀏覽器的x軸距離,,, 相對於父元素的左內邊距的距離
// 擷取到點擊軸的距離螢幕的距離
var leftVal = event.clientX - this.offsetLeft;
console.log(leftVal);
var that = this;
//拖動
document.onmousemove = function(event){
var event = event || window.event;
// 擷取移動的x軸距離,可能是正值,負值,
var barleft = event.clientX-leftVal;
//console.log(barleft);
console.log(scroll.offsetWidth);
console.log(bar.offsetWidth)
if(barleft<0){
barleft = 0;
//offsetWidth:元素在水平方向上佔據的大小,無單位
}else if(barleft > scroll.offsetWidth - bar.offsetWidth){
barleft = scroll.offsetWidth - bar.offsetWidth;

}
mask.style.width = barleft+‘px‘;
that.style.left = barleft+‘px‘;
ptxt.innerHTML = ‘已經走啦‘ + parseInt(barleft/(scroll.offsetWidth-bar.offsetWidth)*100)+‘%‘;
//擷取游標的當前位置,這個是相容寫法,後面的是ie8及以下的,

window.getSelection ? window.getSelection().removeAllRanges() : document.selection.empty();
}
};
document.onmouseup = function(){
document.onmousemove = null; //彈起滑鼠不做任何操作
}
}
</script>
</body>
</html>

 


js 寫一個捲軸

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.