首頁 > php教程 > php手册 > 主體

javascript滚动条之ScrollBar.js

WBOY
發布: 2016-06-07 11:36:33
原創
1632 人瀏覽過

ScrollBar.js是一个仅仅120行的滚动条JS插件,使用非常方便
详情阅读:https://git.oschina.net/wuquanyao/scrollbar.js
/*=================================<br>  * ScrollBar.js beta<br>  * Author:wuquanyao<br>  * Email:wqynqa@163.com<br>  *=================================*/<br> var ScrollBar = {};<br> (function(ScrollBar){<br>     var parent,root,track,bar,tx,ch,h,sh,rate;<br>     ScrollBar.adapter = function(config)<br>     {<br>         init(config);<br>     }<br>     function init(config)<br>     {<br>         parent = document.querySelector(config['selector']);<br>         root   = parent.parentNode;<br>         createBar();<br>         mouseaction();<br>     }<br>     function createBar()<br>     {<br>         track = document.createElement('div');<br>         track.setAttribute('class','scroll-track');<br>         bar   = document.createElement('div');<br>         bar.setAttribute('class','scroll-bar');<br>         track.appendChild(bar);<br>         root.appendChild(track);<br>         sh = root.scrollHeight;<br>         ch = root.offsetHeight;<br>         tx = root.offsetTop;<br>         h  = ch/sh*ch;<br>         if(h             bar.style.height = '30px';<br>             h = 30;<br>         }else{<br>             bar.style.height = h+'px';<br>         }<br>         rate = (sh-ch)/(ch-h);<br>     }<br>     function mouseaction()<br>     {<br>         function eventparse(obj,type,func){<br>             if(document.attachEvent){<br>                 var events = {<br>                     click:'onclick',<br>                     mouseover:'onmouseover',<br>                     mousemove:'onmousemove',<br>                     mouseout:'onmouseout',<br>                     mousedown:'onmousedown',<br>                     mouseup:'onmouseup',<br>                     wheel:'DOMMouseScroll'<br>                 };<br>                 obj.attachEvent(events[type],func);<br>             }else{<br>                 var events = {<br>                     click:'click',<br>                     mouseover:'mouseover',<br>                     mousemove:'mousemove',<br>                     mouseout:'mouseout',<br>                     mousedown:'mousedown',<br>                     mouseup:'mouseup',<br>                     wheel:'DOMMouseScroll'<br>                 };<br>                 obj.addEventListener(events[type],func,false);<br>             }<br>         }<br>         <br>         function init(){<br>             var bool = false,v;<br>             eventparse(bar,'mousedown',function(event){<br>                 bool  = true;<br>             });            <br>             eventparse(document,'mousemove',function(event){<br>                 if(bool){<br>                     if(event.clientY                         v = 0;<br>                     }else if(event.clientY>=(tx+ch-h)){<br>                         v = tx+ch-h;<br>                     }else{<br>                         v = event.clientY;<br>                     }<br>                     parent.style.transform = 'translate(0px,'+(-v*rate)+'px)'; <br>                     bar.style.transform = 'translateY('+v+'px)';<br>                 }<br>             });<br>             eventparse(document,'mouseup',function(event){ <br>                 bool = false;<br>             });<br>             // eventparse(track,'click',function(event){<br>             //     event.stopPropagation();<br>             //     bar.style.transition = 'all 0ms ease 0ms';<br>             //     if(event.clientY             //         bar.style.transform = 'translate(0px,0px)';<br>             //     }else if(event.clientY>=(tx+ch-h)){<br>             //         bar.style.transform = 'translate(0px,'+(tx+ch-h)+'px)';<br>             //     }else{<br>             //         bar.style.transform = 'translate(0px,'+(event.clientY-h/2)+'px)';<br>             //     }<br>             //     parent.style.transform = 'translate(0px,'+((-event.clientY+tx)*rate)+'px)'; <br>             // });<br>             var offset=0;<br>             if (window.navigator.userAgent.indexOf("Firefox") >= 0) {<br>                 eventparse(parent,'wheel',wheelEvent);    <br>             }else{<br>                 parent.onmousewheel=parent.onmousewheel=wheelEvent;<br>             }<br> <br>             function wheelEvent(e){<br>                 var transform,bO,wv = (e.detail/3*20) || (-(e.wheelDelta/120*20));<br>                 if((offset=0))){<br>                     transform = 'translate(0px,'+(-offset)+'px)'; <br>                     bO = 'translateY('+(offset/rate)+'px)';<br>                     offset = ((offset+wv)>(sh-ch))?offset:( ((offset+wv)                 }<br>                 bar.style.transform = bO;<br>                 parent.style.transform = transform; <br>             }<br>         }<br>         init();<br>     }<br> })(ScrollBar);

AD:真正免费,域名+虚机+企业邮箱=0元

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門推薦
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板