原生js仿瀏覽器滾動條效果
更新時間:2017年03月02日 11:17:38 作者:chang紅達
本文主要介紹了原生js仿瀏覽器滾動條效果的實例。具有很好的參考價值,下面跟著小編一起來看下吧
效果圖:

代碼如下:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>仿瀏覽器滾動條</title>
<style type="text/css">
*{margin: 0;padding: 0;}
#demo{width: 300px;height: 500px;border: 1px solid red;margin:100px;position:relative;overflow:hidden;}
p{padding:5px 20px 5px 5px;font-size:26px;position:relative;}
#scrll{width:18px;border-radius:18px;position:absolute;top:0;right:0;background:red;cursor:pointer;}
</style>
</head>
<body>
<div id="demo">
<p id="dp">我是文字內(nèi)容我是文字內(nèi)容我是文字內(nèi)容我是文字內(nèi)容我是文字內(nèi)容我是文字內(nèi)容我是文字內(nèi)容我是文字內(nèi)容我是文字內(nèi)容我是文字內(nèi)容我是文字內(nèi)容我是文字內(nèi)容我是文字內(nèi)容我是文字內(nèi)容我是文字內(nèi)容我是文字內(nèi)容我是文字內(nèi)容我是文字內(nèi)容我是文字內(nèi)容我是文字內(nèi)容我是文字內(nèi)容我是文字內(nèi)容我是文字內(nèi)容我是文字內(nèi)容我是文字內(nèi)容我是文字內(nèi)容我是文字內(nèi)容我是文字內(nèi)容我是文字內(nèi)容我是文字內(nèi)容我是文字內(nèi)容我是文字內(nèi)容我是文字內(nèi)容我是文字內(nèi)容我是文字內(nèi)容我是文字內(nèi)容我是文字內(nèi)容我是文字內(nèi)容我是文字內(nèi)容我是文字內(nèi)容我是文字內(nèi)容我是文字內(nèi)容我是文字內(nèi)容我是文字內(nèi)容我是文字內(nèi)容我是文字內(nèi)容我是文字內(nèi)容我是文字內(nèi)容我是文字內(nèi)容我是文字內(nèi)容我是文字內(nèi)容我是文字內(nèi)容我是文字內(nèi)容我是文字內(nèi)容我是文字內(nèi)容</p>
<div id="scrll"></div>
</div>
</body>
<script type="text/javascript">
(function(window){
function $(id){
return document.getElementById(id);
};
// 獲取對象
var dp = $("dp"),demo = $("demo"),scrll = $("scrll");
// 獲取dp的長度
var dpHeight = dp.offsetHeight;
// 獲取demo的長度
var demoHeight = demo.offsetHeight;
// 根據(jù)比值計算scrll的長度
var scrllHeight = demoHeight * demoHeight / dpHeight ;
// 如果內(nèi)容長度小于窗口長度,則滾動條不顯示
if( dp.offsetHeight < demo.offsetHeight){
scrllHeight = 0;
};
scrll.style.height = scrllHeight + "px";
// 獲取滾動條和內(nèi)容移動距離的比例
var bilu = ( dp.offsetHeight - demo.offsetHeight ) / (demo.offsetHeight - scrll.offsetHeight);
// 滾動條滾動事件
scrll.onmousedown = function(event){
// event兼容性解決
// console.log(demo.offsetTop)
var event = event || window.event;
// 獲取鼠標(biāo)按下的頁面坐標(biāo)
// 滾動條滾動時只有top值改變,所有不需要獲取pageX
var pageY = event.pageY || event.clientY + document.documentElement.scrollTop;
// 獲取鼠標(biāo)在scrll內(nèi)的坐標(biāo)
var scrllY = pageY - demo.offsetTop - scrll.offsetTop;
// 給document綁定鼠標(biāo)移動事件
document.onmousemove = function(event){
var event = event || window.event;
// 獲取鼠標(biāo)移動時的坐標(biāo)
var moveY = event.pageY || event.clientY + document.documentElement.scrollTop;
// 獲取滾動條的移動坐標(biāo)
var trueY = moveY - scrllY - demo.offsetTop ;
// 限制滾動條移動的范圍
if( trueY < 0 ){
trueY = 0 ;
};
if( trueY > demo.offsetHeight - scrll.offsetHeight ){
trueY = demo.offsetHeight - scrll.offsetHeight;
};
scrll.style.top = trueY + "px";
//清除選中文字
window.getSelection ? window.getSelection().removeAllRanges() : document.selection.empty();
// 獲取文字區(qū)域移動的距離
var dpY = trueY * bilu ;
dp.style.top = - dpY + "px";
}
};
// 鼠標(biāo)抬起清除鼠標(biāo)移動事件
document.onmouseup = function(){
document.onmousemove = null;
}
})(window)
</script>
</html>
以上就是本文的全部內(nèi)容,希望本文的內(nèi)容對大家的學(xué)習(xí)或者工作能帶來一定的幫助,同時也希望多多支持腳本之家!
相關(guān)文章
分享JS代碼實現(xiàn)鼠標(biāo)放在輸入框上輸入框和圖片同時更換樣式
在一些網(wǎng)站我們會見到,當(dāng)鼠標(biāo)放在輸入框上輸入框和圖片同時更換樣式,那么基于js代碼是如何實現(xiàn)的呢?下面小編給大家解答下2016-09-09
JavaScript實現(xiàn)的反序列化json字符串操作示例
這篇文章主要介紹了JavaScript實現(xiàn)的反序列化json字符串操作,結(jié)合實例形式分析了eval與JSON.parse兩種反序列化json字符串的相關(guān)操作技巧,需要的朋友可以參考下2018-07-07
JS實現(xiàn)可自定義大小,可雙擊關(guān)閉的彈出層效果
這篇文章主要介紹了JS實現(xiàn)可自定義大小,可雙擊關(guān)閉的彈出層效果,涉及JavaScript定時函數(shù)及頁面元素動態(tài)操作的相關(guān)技巧,具有一定參考借鑒價值,需要的朋友可以參考下2015-10-10

