菜鳥學JS(三)——自動隱藏的懸浮框

來源:互聯網
上載者:User

今天寫一個小執行個體,用js和css寫一個可以自動隱藏的懸浮框。css肯定是用來控制樣式的,js用來控制器顯示與隱藏的。顯示與隱藏通常有兩種方法實現:1,用js控制其顯示內容;2,用js控制其大小。


今天要說的就是通過控制其大小來實現元素的顯隱,原理:為其註冊滑鼠移入、移出的事件,當滑鼠移出物件範圍,將其寬度設為1,當滑鼠再次移入該對象,將其寬度還原。很簡單,我們一起看看吧!


隱藏狀態:


左邊那一條窄線就是隱藏以後的懸浮框。


顯示狀態:


當滑鼠滑到左邊的懸浮框上,懸浮框就又顯示出來了。


CSS樣式:

<style>* { font-size:12px; font-family:Verdana,宋體; }html, body { margin:0px; padding:0px; overflow:hidden; }.b { margin:0px; padding:0px; overflow:auto; }.line0 { line-height:20px; background-color:lightyellow; padding:0px 15px; }.line1 { line-height:18px; background-color:lightblue; padding:0px 10px; }.w { position:absolute; lift:10px; top:10px; width:1px; height:300px; overflow:hidden; border:2px groove #281; cursor:default; -moz-user-select:none; }.t { line-height:20px; height:20px; width:160px; overflow:hidden; background-color:#27C; color:white; font-weight:bold; border-bottom:1px outset blue; text-align:center; }.winBody { height:270px; width:160px; overflow-x:auto; overflow-y:auto; border-top:1px inset blue; padding:10px; background-color:white; }</style>

JS代碼:

<script type="text/javascript">function myshow(){ //document.getElementById('mydiv').style.display = "none"; document.getElementById('mydiv').style.width = "160px";} //blockfunction myhide(){ //document.getElementById('mydiv').style.display = "block"; document.getElementById('mydiv').style.width="1px"; }//測試用,隨機產生一些內容,便於測試效果。for(var i=0; i<400; i++)document.write("<div class=\"line"+(i%2)+"\">"+(new Array(20)).join((Math.random()*1000000).toString(36)+" ")+"<\/div>");new function(w,b,c,d,o){  d=document;b=d.body;o=b.childNodes;c="className"; b.appendChild(w=d.createElement("div"))[c]= "b"; for(var i=0; i<o.length-1; i++)if(o[i][c]!="w")w.appendChild(o[i]),i--; (window.onresize = function(){  w.style.width = d.documentElement.clientWidth + "px";  w.style.height = d.documentElement.clientHeight + "px"; })();</script>

HTML代碼:

<body ><div class="w" id="mydiv" onmousemove="myshow()" onmouseout="myhide()"><div class="t">學生資訊</div><div class="winBody">學號:<label>0123456789 </label><br><br>姓名:<label>小明 </label><br><br>學院:<label>軟體學院 </label><br><br>專業:<label>軟體工程</label><br><br>班級:<label>一班</label><br><br></div></div></body>

用懸浮框來顯示一些資訊,當需要看的時候,指向它,它就會乖乖的出來,很方便;當不需要的時候滑鼠移開,它又會很識趣的自己默默離開。雖然很簡單,但是卻有不錯的使用者體驗,做出讓使用者用著舒服的東西,是我們不變的追求。




相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.