DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> JavaScript綜合知識 >> 制作jquery遮罩層效果導航菜單代碼
制作jquery遮罩層效果導航菜單代碼
編輯:JavaScript綜合知識     

 我們將創建一個簡單的jquery菜單,只要我們懸停在導航欄的區域裡,將展示給我們的畫面是:明亮的菜單在稍顯黑暗的背景圖中脫穎而出

jquery導航是一個網站必不可少的模塊,當一個用戶在一個網站上浏覽的時候,為了某個目的而查看網站導航欄的時候,突出導航欄的效果是重中之重。因此必須要使用一個效果:jquery遮罩層。利用明暗效果來突出當前用戶的操作。    代碼如下: $(function() { var $oe_menu= $('#oe_menu'); var $oe_menu_items= $oe_menu.children ('li'); var $oe_overlay= $('#oe_overlay');                 $oe_menu_items.bind('mouseenter',function(){ var $this = $(this); $this.addClass('slided selected'); $this.children('div').css('z- index','9999').stop(true,true).slideDown(200,function(){ $oe_menu_items.not ('.slided').children('div').hide(); $this.removeClass('slided'); }); }).bind('mouseleave',function(){ var $this = $(this); $this.removeClass('selected').children ('div').css('z-index','1'); }); $oe_menu.bind('mouseenter',function(){ var $this = $(this); $oe_overlay.stop(true,true).fadeTo(200,  0.6); $this.addClass('hovered'); }).bind('mouseleave',function(){ var $this = $(this); $this.removeClass('hovered'); $oe_overlay.stop(true,true).fadeTo(200,  0); $oe_menu_items.children('div').hide(); }) });
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved