真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

使用JavaScript怎么實現(xiàn)一個滾動條

本篇文章給大家分享的是有關(guān)使用JavaScript怎么實現(xiàn)一個滾動條,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

成都創(chuàng)新互聯(lián)專注于企業(yè)全網(wǎng)營銷推廣、網(wǎng)站重做改版、鄲城網(wǎng)站定制設(shè)計、自適應品牌網(wǎng)站建設(shè)、H5高端網(wǎng)站建設(shè)商城網(wǎng)站制作、集團公司官網(wǎng)建設(shè)、成都外貿(mào)網(wǎng)站制作、高端網(wǎng)站制作、響應式網(wǎng)頁設(shè)計等建站業(yè)務,價格優(yōu)惠性價比高,為鄲城等各大城市提供網(wǎng)站開發(fā)制作服務。

1、滾動條 bar 是根據(jù)內(nèi)容的多少,高度不一樣的,這個需要動態(tài)的計算

2、滾動條 bar 的 top 位置 和 內(nèi)容scrollTop 的關(guān)系。

思路:

使用嵌套的布局,如下:



  
    
    
    
      *{
        padding: 0;
        margin: 0;
      }
      .wrap{
        width: 400px;
        height: 400px;
        border: 2px solid deeppink;
        margin: 0 auto;
        overflow: hidden;
        position: relative;
      }
      .box-middle{
        height: 100%;
        overflow: auto;
        width: 200%;
      }
      .box{
        width: 50%;
      }
      .bar{
        background: #000;
        width: 10px;
        position: absolute;
        top: 0;
        right: 0;
      }
      .s1{
        height: 400px;
        background: pink;
      }
      .s2{
        height: 400px;
        background: deeppink;
      }
      .s3{
        height: 400px;
        background: deepskyblue;
      }
    
  
  
    
      
        
          內(nèi)容1
          內(nèi)容2
          內(nèi)容3
                                    

wrap 為最外層,給overflow:hidden;。

box-middle 是中間層,也是有滾動條的一層,可以寬度給多一點,這樣就看不見滾動條了。

box就是內(nèi)容層,通過js,計算使得 box 的寬度和wrap 保持一致,這樣就完全看不見滾動條了

bar 為滾動條

寫js之前,首先要弄懂一下三個屬性:

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

1、計算比例:

bar的高度 / wrap的高度 = wrap的高度 / wrap 內(nèi)容部子元素的高度和 ; 此時忽略 wrap 的padding:0

bar的top / wrap的scrollTop = wrap的高度 / wrap 內(nèi)容部子元素的高度和 ;

需要注意,當比例 的 值 小于 1 的時候,說明 這個時候沒有出現(xiàn)滾動條。

知道算法之后,寫代碼就簡單很多,普通版代碼如下:

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"; //內(nèi)容的寬度
var rate = $boxMidle.clientHeight/ $boxMidle.scrollHeight; //滾動條高度的比例,也是滾動條top位置的比例
 var barHeight = rate * $boxMidle.clientHeight; //滾動條的 bar 的高度
if(rate < 1){
  //需要出現(xiàn)滾動條,并計算滾動條的高度
  $bar.style.height = barHeight + "px";
}else{
  //不需要出現(xiàn)滾動條
  $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); //內(nèi)容的高度(所有子元素高度和) + padding
  console.log(this.scrollTop);
  $bar.style.top = this.scrollTop*rate + "px";
}

使用面向?qū)ο蟀妫?/p>

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); //內(nèi)容的高度 + padding
    console.log(this.scrollTop);
    me.scrollToY(this.scrollTop * me.rate)
  }
}
ScrollBar.prototype.init = function(){
  this.$content.style.width = this.$wrap.clientWidth + "px"; //內(nèi)容的寬度
  this.rate = this.$boxMidle.clientHeight/this.$boxMidle.scrollHeight; //滾動條高度的比例,也是滾動條top位置的比例
   this.barHeight = this.rate * this.$boxMidle.clientHeight; //滾動條的 bar 的高度
  if(this.rate < 1){
    //需要出現(xiàn)滾動條,并計算滾動條的高度
    this.$bar.style.height = this.barHeight + "px";
  }else{
    //不需要出現(xiàn)滾動條
    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"});

以上就是使用JavaScript怎么實現(xiàn)一個滾動條,小編相信有部分知識點可能是我們?nèi)粘9ぷ鲿姷交蛴玫降摹OM隳芡ㄟ^這篇文章學到更多知識。更多詳情敬請關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。


文章題目:使用JavaScript怎么實現(xiàn)一個滾動條
轉(zhuǎn)載來于:http://weahome.cn/article/pgsidj.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部