程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> 運用css,對於下拉菜單的制作,運用css下拉菜單

運用css,對於下拉菜單的制作,運用css下拉菜單

編輯:關於PHP編程

運用css,對於下拉菜單的制作,運用css下拉菜單


<html xmlns="http://www.w3.org/1999/xhtml" lang="en">

	<head>
		<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
		<title></title>
		<style type="text/css">
			* {
				margin: 0px;
				padding: 0px;
			}
			
			#nav {
				width: 500px;
				background-color: #737373;
				height: 40px;
				/*border-radius: 10px;*/
				position: relative;
				margin: 0px auto;
				top: 0px;
			}
			
			.nav-container {
				width: 100%;
				height: 40px;
				position: absolute;
			}
			
			.banner {
				float: left;
				text-align: center;
				height: 40px;
				width: 20%;
				line-height: 40px;
			}
			
			.banner:hover {
				background-color: #00BFFF;
				cursor: pointer;
			}
			
			div ul {
				list-style: none;
				/*display: none;*/
				background-color: blue;
				overflow: hidden;
				/*模擬height:auto時候的情況*/				
				max-height: 0px;
				transition: max-height 0.3s;
				/*多浏覽器支持*/
				-moz-transition: height 1s;
				-webkit-transition: height 1s;
				-o-transition: height 1s;
			}
			
			.banner:hover ul {
				/*display: block;*/
				width: 100%;
				max-height: 160px;
			}
			
			div ul li {
				overflow: hidden;
			}
			
			div ul li:hover {
				background-color: red;
			}
		</style>
	</head>

	<body>
		<div class="nav-container">
			<div id="nav">
				<div id="nav-button-1" class="banner">第1個導航
					<ul>
						<li>1</li>
						<li>2</li>
						<li>3</li>
						<li>4</li>
					</ul>
				</div>
				<div id="nav-button-2" class="banner">第2個導航
					<ul>
						<li>1</li>
						<li>2</li>
						<li>3</li>
					</ul>
				</div>
				<div id="nav-button-3" class="banner">第3個導航
					<ul>
						<li>1</li>
						<li>2</li>
					</ul>
				</div>
				<div id="nav-button-4" class="banner">第4個導航
					<ul>
						<li>1</li>
						<li>2</li>
						<li>3</li>
						<li>4</li>
						<li>5</li>
					</ul>
				</div>
				<div id="nav-button-5" class="banner">第5個導航
					<ul>
						<li>1</li>
						<li>2</li>
						<li>3</li>
						<li>4</li>
						<li>5</li>
					</ul>
				</div>
			</div>
		</div>

	</body>

  

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved