今天就寫一個小實例,用js和css寫一個可以自動隱藏的懸浮框。 css肯定是用來控制樣式的,js用來控制器顯示與隱藏的。顯示與隱藏通常有兩種方法實作:1,用js控制其顯示屬性;2,用js控制其大小。
今天要說的就是透過控制其大小來實現元素的顯隱,原理:為其註冊滑鼠移入、移出的事件,當滑鼠移出物件範圍,將其寬度設為1,當滑鼠再次移入該對象,將其寬度還原。很簡單,我們一起看看吧!
隱藏狀態:
左邊那條窄線就是隱藏以後的懸浮框。
顯示狀態:
當滑鼠滑到左邊的懸浮框上,懸浮框就又顯示出來了。
CSS樣式:
* { 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:blue ; padding:0px 10px; }
.w { position:absolute; lift:10px; top:10px; width:1px; height:300px; overflow:hidden; -user-select:none; }
.t { line-height:20px; height:20px; width:160px; overflow:hidden; background-color:#27C; color:white; font-weight:bold; background-color:#27C; color:white; order-weight:bold; -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; }
JS程式碼:
複製程式碼
複製程式碼
複製程式碼
複製程式碼
複製程式碼
複製程式碼
複製程式碼
複製碼>
程式碼如下:
//document.getElementById('mydiv') .style.display = "none"; document.getElementById('mydiv').style.width = "160px";
} //block
function myhide(){
//document .getElementById('mydiv').style.display = "block";
document.getElementById('mydiv').style.width="1px";
}
//測試用,隨機產生一些內容,方便測試效果。
for(var i=0; i" (new Array(20)).join((Math. random()*1000000).toString(36) " ") "
");
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
(window.onresize = function(){
w.style.width = d.documentElement.clientWidth "px"; w.style.height = d.documentElement.clientHeight "px";
})(); } HTML代碼: 複製程式碼 程式碼如下: 學生資料
學號:
姓名:
學院:
專業:
班級:
用懸浮框來顯示一些訊息,當需要看的時候,指向它,它就會乖乖的出來,很方便;當不需要的時候滑鼠移開,它又會很識趣的自己默默離開。雖然很簡單,但卻有不錯的使用者體驗,做出讓使用者用舒服的東西,是我們不變的追求。