zoukankan      html  css  js  c++  java
  • 使用 js,自己写一个简单的滚动条

    当我们给元素加上 overflow: auto;  的时候,就会出现滚动条,然而浏览的不同,滚动条的样式大不一样,有些甚至非常丑。

    于是就想着自己写一个滚动条,大概需要弄清楚一下这几个点:

    1、滚动条 bar 是根据内容的多少,高度不一样的,这个需要动态的计算

    2、滚动条 bar 的 top 位置 和 内容scrollTop 的关系。

    思路:

     使用嵌套的布局,如下:

    <!DOCTYPE html>
    <html>
    	<head>
    		<meta charset="utf-8">
    		<title></title>
    		<style type="text/css">
    			*{
    				padding: 0;
    				margin: 0;
    			}
    			.wrap{
    				 400px;
    				height: 400px;
    				border: 2px solid deeppink;
    				margin: 0 auto;
    				overflow: hidden;
    				position: relative;
    			}
    			.box-middle{
    				height: 100%;
    				overflow: auto;
    				 200%;
    			}
    			.box{
    				 50%;
    			}
    			.bar{
    				background: #000;
    				 10px;
    				position: absolute;
    				top: 0;
    				right: 0;
    			}
    			.s1{
    				height: 400px;
    				background: pink;
    			}
    			.s2{
    				height: 400px;
    				background: deeppink;
    			}
    			.s3{
    				height: 400px;
    				background: deepskyblue;
    			}
    		</style>
    	</head>
    	<body>
    		<div class="wrap" id="wrap">
    			<div class="box-middle" id="boxMidle">
    				<div class="box" id="content">
    					<div class="s1">内容1</div>
    					<div class="s2">内容2</div>
    					<div class="s3">内容3</div>
    				</div>
    			</div>
    			<div class="bar" id="bar"></div>
    		</div>
    		
    	</body>
    
    </html>
    

      

    wrap 为最外层,给overflow:hidden;。

    box-middle 是中间层,也是有滚动条的一层,可以宽度给多一点,这样就看不见滚动条了。

    box就是内容层,通过js,计算使得 box 的宽度和wrap 保持一致,这样就完全看不见滚动条了

    bar 为滚动条

    写js之前,首先要弄懂一下三个属性:

    offsetHeight : height + padding + border
    
    clientHeight :  height + padding
    
    scrollHeight : 内容的高度(所有子元素高度和) + padding
    

      

    1、计算比例:

      bar的高度 / wrap的高度 =  wrap的高度 / wrap 内容部子元素的高度和      ;  此时忽略 wrap 的padding:0 

           bar的top  /  wrap的scrollTop      =   wrap的高度 / wrap 内容部子元素的高度和   ;

         

         需要注意,当比例 的 值 小于 1 的时候,说明 这个时候没有出现滚动条。

    知道算法之后,写代码就简单很多,普通版代码如下:

    	 	var $wrap = document.getElementById("wrap");
    		var $boxMidle = document.getElementById("boxMidle");
    		var $content = document.getElementById("content");
    		var $bar = document.getElementById("bar");
    		$content.style.width = $wrap.clientWidth + "px";  //内容的宽度
    		var rate = $boxMidle.clientHeight/ $boxMidle.scrollHeight;  //滚动条高度的比例,也是滚动条top位置的比例
    		 var barHeight = rate * $boxMidle.clientHeight;  //滚动条的 bar 的高度
    		if(rate < 1){
    			//需要出现滚动条,并计算滚动条的高度
    			$bar.style.height = barHeight + "px";
    		}else{
    			//不需要出现滚动条
    			$bar.style.display = "none";
    		}
    		
    		$boxMidle.onscroll = function(e){
    			console.log("offsetHeight"+this.offsetHeight); //height + padding + border
    			console.log("clientHeight"+this.clientHeight); // height + padding
    			console.log("scrollHeight"+this.scrollHeight); //内容的高度(所有子元素高度和) + padding
    			console.log(this.scrollTop);
    			$bar.style.top = this.scrollTop*rate + "px";
    		} 
    

      

     使用面向对象版:

    		function ScrollBar(opt){
    			var me = this;
    			me.$wrap = document.getElementById(opt.wrap);
    			me.$boxMidle = document.getElementById(opt.boxMidle);
    			me.$content =  document.getElementById(opt.content);
    			me.$bar = document.getElementById(opt.bar);
    			me.init();
    			me.$boxMidle.onscroll = function(e){
    				//console.log("offsetHeight"+this.offsetHeight); //content + padding + border
    				//console.log("clientHeight"+this.clientHeight); // content + padding
    				//console.log("scrollHeight"+this.scrollHeight); //内容的高度 + padding
    				console.log(this.scrollTop);
    				me.scrollToY(this.scrollTop * me.rate)
    			}
    		}
    		ScrollBar.prototype.init = function(){
    			this.$content.style.width = this.$wrap.clientWidth + "px";  //内容的宽度
    			this.rate = this.$boxMidle.clientHeight/this.$boxMidle.scrollHeight;  //滚动条高度的比例,也是滚动条top位置的比例
    			 this.barHeight = this.rate * this.$boxMidle.clientHeight;  //滚动条的 bar 的高度
    			if(this.rate < 1){
    				//需要出现滚动条,并计算滚动条的高度
    				this.$bar.style.height = this.barHeight + "px";
    			}else{
    				//不需要出现滚动条
    				this.$bar.style.display = "none";
    			}
    		}
    		ScrollBar.prototype.scrollToY = function(y){
    			if(this.rate < 1){
    				this.$bar.style.top  = y + 'px';
    			}
    		}
    
    		var obj = new ScrollBar({"wrap":"wrap","boxMidle":"boxMidle","content":"content","bar":"bar"});
    

      

     最后看一下效果:

    虽然效果很丑,但是可控,自己调一下就可以了

  • 相关阅读:
    卡巴斯基呼吁通过国际立法打击网络犯罪 狼人:
    服务流量论Google的那些服务
    字符数组hdu 4552
    方法说明JAVA复习笔记前言:第一节:从注释开始
    新特性版本Impala各版本新特性
    通知准时为什么讲座时间在通知中提前了半个小时
    集合objectjava_collection
    android对象巧用Android网络通信技术,在网络上直接传输对象
    ejb对象2013年 最新面试题
    提示系统启动关于误更改/var下诺干的权限问题,导致系统启动提示The System is running in lowgraphics mode问题解决 By ACReaper
  • 原文地址:https://www.cnblogs.com/muamaker/p/10492227.html
Copyright © 2011-2022 走看看