您好,登錄后才能下訂單哦!
使用JavaScript怎么實現一個隱藏式側邊欄功能?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title>www.jb51.net js側邊欄</title> <style type="text/css"> *{margin: 0;padding: 0;} #div1{width: 160px; height: 320px; background: #fff; /*border: 1px solid red;*/position: relative;left:-140px;top:100px;} #div1 .hide{width: 140px; height: 320px; background: cyan; float: left;position: absolute;left: 0;top: 0;} #div1 .show{width: 17px; height: auto;background: skyblue;border: 1px solid #000;float: right; position: absolute; top: 39%;right: 0;} </style> <script type="text/javascript"> window.onload=function(){ var oDiv=document.getElementById('div1'); var timer; oDiv.onmouseover=function(){ //startMove(10,0);speed,end startMove(0); //這里稍作優化,原來傳入兩個參數改為一個參數 }; oDiv.onmouseout=function(){ //startMove(-10,-140); startMove(-140); } function startMove(end){ /*var oDiv=document.getElementById('div1');*/ clearInterval(timer); timer=setInterval(function(){ var speed=0; //從-140到0,速度為正,從0到-140,速度為負 if(oDiv.offsetLeft>end){ speed=-10; }else{ speed=10; } if(oDiv.offsetLeft==end){ clearInterval(timer); }else{ oDiv.style.left=oDiv.offsetLeft+speed+'px'; } },30); } } </script> </head> <body> <div id="div1"> <div class="hide"> <ul> <li>qq</li> <li>weibo</li> <li>jb51</li> </ul> </div> <div class="show"> <span>分享到</span> </div> </div> </body> </html>
關于使用JavaScript怎么實現一個隱藏式側邊欄功能問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。