DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> jQuery入門知識 >> JQuery特效代碼 >> 用jquery的方法教程制作一個簡單的導航欄
用jquery的方法教程制作一個簡單的導航欄
編輯:JQuery特效代碼     
<!DOCTYPE html> 
<html> 
<head> 
<meta charset="utf-8"> 
<title>學習導航欄的制作</title> 
<script src="http://code.jquery.com/jquery-1.10.2.js"></script> 
<script> 
$(document).ready(function() { 
$(".div1").click(function() { 
$(".div2").addClass("dlHover"); 
}); 
$(".div1").hover(function(){//第一個函數作為鼠標懸浮時執行的函數 
$(this).addClass("bg"); 
},function(){//第二個函數作為鼠標離開時執行的函數 
$(this).removeClass("bg"); 
$(".div2").removeClass("dlHover"); 
}); 
}); 
</script> 
<style> 
*{margin: 0px auto;padding: 0px;text-align: center;} 
ul{list-style: none;} 
.div2{display:none;width: 100px;border: 1px solid gray;background: #00FFFF;} 
.dlHover{position:absolute;z-index: 9999;display: block;} 
.div1{border: 1px solid gray;width: 100px;background-color: #999999;} 
.bg{background-color: #1F9999;} 
</style> 
</head> 
<body> 
<div class="div1"> 
<span class="span1">導航1</span> 
<div class="div2"> 
<ul> 
<li><a href="#">導航2</a></li> 
<li><a href="#">導航3</a></li> 
</ul> 
</div> 
</div> 
<h3>學習導航欄的制作</h3> 
<p>這是一個簡單的導航欄</p> 
</body> 
</html>
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved