js實現(xiàn)鼠標(biāo)點擊左上角滑動菜單效果代碼
本文實例講述了js實現(xiàn)鼠標(biāo)點擊左上角滑動菜單效果代碼。分享給大家供大家參考。具體如下:
這里需要鼠標(biāo)點擊激活的網(wǎng)頁左上角菜單,不點擊不會滑出來,可以改造成二級菜單。
運(yùn)行效果截圖如下:
在線演示地址如下:
http://demo.jb51.net/js/2015/js-click-hd-show-menu-style-codes/
具體代碼如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>左上角導(dǎo)航菜單</title> <style type="text/css"> #divMenu0 {position:absolute; top:0px; left:30px; visibility:hidden; font-family:arial,helvetica,sans-serif; font-size:18px; font-weight:bold;} #divMenu1 {position:absolute; top:0px; left:150px; visibility:hidden; font-family:arial,helvetica,sans-serif; font-size:18px; font-weight:bold;} #divMenu2 {position:absolute; top:0px; left:250px; visibility:hidden; font-family:arial,helvetica,sans-serif; font-size:18px; font-weight:bold;} </style> <script language="javascript"> function lib_bwcheck(){ //Browsercheck (needed) this.ver=navigator.appVersion this.agent=navigator.userAgent this.dom=document.getElementById?1:0 this.opera5=this.agent.indexOf("Opera 5")>-1 this.ie5=(this.ver.indexOf("MSIE 5")>-1 && this.dom && !this.opera5)?1:0; this.ie6=(this.ver.indexOf("MSIE 6")>-1 && this.dom && !this.opera5)?1:0; this.ie4=(document.all && !this.dom && !this.opera5)?1:0; this.ie=this.ie4||this.ie5||this.ie6 this.mac=this.agent.indexOf("Mac")>-1 this.ns6=(this.dom && parseInt(this.ver) >= 5) ?1:0; this.ns4=(document.layers && !this.dom)?1:0; this.bw=(this.ie6 || this.ie5 || this.ie4 || this.ns4 || this.ns6 || this.opera5) return this } var bw=new lib_bwcheck() var tMove=10; var tSpeed=40 var tMoveOnScroll=true var tShow=20 function makeMenu(obj,nest,show,move,speed){ nest=(!nest) ? "":'document.'+nest+'.' this.el=bw.dom?document.getElementById(obj):bw.ie4?document.all[obj]:bw.ns4?eval(nest+'document.'+obj):0; this.css=bw.dom?document.getElementById(obj).style:bw.ie4?document.all[obj].style:bw.ns4?eval(nest+'document.'+obj):0; this.x=this.css.left||this.css.pixelLeft||this.el.offsetLeft||0 this.y=this.css.top||this.css.pixelTop||this.el.offsetTop||0 this.state=1; this.go=0; this.mup=b_mup; this.show=show; this.mdown=b_mdown; this.height=bw.ns4?this.css.document.height:this.el.offsetHeight this.moveIt=b_moveIt; this.move=move; this.speed=speed this.obj = obj + "Object"; eval(this.obj + "=this") } var px = bw.ns4||window.opera?"":"px"; function b_moveIt(x,y){this.x=x; this.y=y; this.css.left=this.x+px; this.css.top=this.y+px;} function b_mup(){ if(this.y>-this.height+this.show){ this.go=1; this.moveIt(this.x,this.y-this.move) setTimeout(this.obj+".mup()",this.speed) }else{this.go=0; this.state=1} } //Menu out function b_mdown(){ if(this.y<eval(scrolled)){ this.go=1; this.moveIt(this.x,this.y+this.move) setTimeout(this.obj+".mdown()",this.speed) }else{this.go=0; this.state=0} } function moveTopMenu(num){ if(!oMenu[num].go){ if(!oMenu[num].state)oMenu[num].mup() else oMenu[num].mdown() } for(i=0;i<oMenu.length;i++){ if(i!=num && !oMenu[i].state){ oMenu[i].mup()} } } function checkScrolled(){ for(i=0;i<oMenu.length;i++){ if(!oMenu[i].go){ y=!oMenu[i].state?eval(scrolled):eval(scrolled)-oMenu[i].height+oMenu[i].show oMenu[i].moveIt(oMenu[i].x,y) } } if(bw.ns4||bw.ns6) setTimeout('checkScrolled()',40) } function topMenuInit(){ oMenu=new Array() oMenu[0]=new makeMenu('divMenu0',"",tShow,tMove,tSpeed) oMenu[1]=new makeMenu('divMenu1',"",tShow,tMove,tSpeed) //* oMenu[2]=new makeMenu('divMenu2',"",20,10,20) //* scrolled=bw.ns4||bw.ns6?"window.pageYOffset":"document.body.scrollTop" for(i=0;i<oMenu.length;i++){ oMenu[i].moveIt(oMenu[i].x,-oMenu[i].height+oMenu[i].show) oMenu[i].css.visibility='visible' } if(tMoveOnScroll) bw.ns4||bw.ns6?checkScrolled():window.onscroll=checkScrolled; } onload=topMenuInit; </script> <div id="divMenu0"> <!-- You can just replace this text with some cool images if you want --> <a href="javascript://">鏈接一</a><br><br> <a href="javascript://">鏈接二</a><br><br> <a href="javascript://">鏈接三</a><br><br> <a href="javascript://">鏈接四</a><br><br> <a href="#" onclick="moveTopMenu(0); return false">菜單一</a> </div> <div id="divMenu1"> <!-- You can just replace this text with some cool images if you want --> 這是第二個菜單的內(nèi)容<br><br> <a href="#" onmouseover="moveTopMenu(1)">菜單二</a> </div> <div id="divMenu2"> <!-- You can just replace this text with some cool images if you want --> 這是第三個菜單的內(nèi)容<br> <a href="#" onclick="moveTopMenu(2); return false">菜單三</a> </div> </body> </html>
希望本文所述對大家的JavaScript程序設(shè)計有所幫助。
- js實現(xiàn)鼠標(biāo)拖拽div左右滑動
- 基于JavaScript實現(xiàn)鼠標(biāo)向下滑動加載div的代碼
- JS DOM實現(xiàn)鼠標(biāo)滑動圖片效果
- JS將滑動門改為選項卡(需鼠標(biāo)點擊)的實現(xiàn)方法
- javascript鼠標(biāo)滑動評分控件完整實例
- javascript實現(xiàn)百度地圖鼠標(biāo)滑動事件顯示、隱藏
- js實現(xiàn)鼠標(biāo)感應(yīng)向下滑動隱藏菜單的方法
- javascript table美化鼠標(biāo)滑動單元格變色
- js自動滑動+鼠標(biāo)滑動區(qū)域
- js實現(xiàn)鼠標(biāo)滑動到某個div禁止?jié)L動
相關(guān)文章
基于Echarts 3.19 制作常用的圖形(非靜態(tài))
這篇文章主要介紹了基于Echarts 3.19 制作常用的圖形(非靜態(tài))的相關(guān)資料,需要的朋友可以參考下2016-05-05uniapp實現(xiàn)全局設(shè)置字體大小(小中大的字體切換)
隨著UniApp的流行,越來越多的開發(fā)者選擇使用它來構(gòu)建跨平臺應(yīng)用程序,下面這篇文章主要給大家介紹了關(guān)于uniapp實現(xiàn)全局設(shè)置字體大小(小中大的字體切換)的相關(guān)資料,需要的朋友可以參考下2023-06-06原生js實現(xiàn)的貪吃蛇網(wǎng)頁版游戲完整實例
這篇文章主要介紹了原生js實現(xiàn)的貪吃蛇網(wǎng)頁版游戲完整實例,可實現(xiàn)自主選擇游戲難度進(jìn)行貪吃蛇游戲的功能,涉及javascript鍵盤事件及頁面元素的操作技巧,需要的朋友可以參考下2015-05-05快速查找數(shù)組中的某個元素并返回下標(biāo)示例
最近在寫jquery的combobox插件時遇到效率問題,再加上jquery選擇器的類帥選,導(dǎo)致效率很慢,采用以下方式二,可以輕松解決此問題2013-09-09