WEB开发网
开发学院网页设计DivCss css3实现带有简单动画按钮导航 阅读

css3实现带有简单动画按钮导航

 2012-11-15 16:03:38 来源:WEB开发网   
核心提示: transition语法:transition-property:all | none | <property>[ ,<property> ]*默认值:all取值:all:所有可以进行过渡的css属性none:不指定过渡的css属性<property>:指定要进行过渡的css属性说

 transition
语法:

transition-property:all | none | <property>[ ,<property> ]*

默认值:all
取值:

all:所有可以进行过渡的css属性
none:不指定过渡的css属性
<property>:指定要进行过渡的css属性
说明:
检索或设置对象中的参与过渡的属性。
默认值为:all。默认为所有可以进行过渡的css属性。
如果提供多个属性值,以逗号进行分隔。
对应的脚本特性为transitionProperty。

html代码如下:

<div class="content">
<h2>Simple Animated Menu Using CSS3</h2>
<h3>Example 1</h3>
<ul class="nav">
<li class="selected"><a href="/">Home</a></li>
<li><a href="/">About Us</a></li>
<li><a href="/">Portfolio</a></li>
<li><a href="/">Services</a></li>
</ul>
<br /><br />
<br /><br />
<div style="clear:both;"></div>
<h3>Example 2</h3>
<ul class="nav2">
<li><a href="/"><strong>Home</strong><em>Home</em></a></li>
<li><a href="/"><strong>About Us</strong><em>About Us</em></a></li>
<li><a href="/"><strong>Portfolio</strong><em>Portfolio</em></a></li>
<li><a href="/"><strong>Services</strong><em>Services</em></a></li>
</ul>
</div>

css代码如下:


<style type="text/css">
* {
margin:0;
padding:0;
}
body {
background:#eee;
font-family:Verdana, Geneva, sans-serif;
font-size:12px;
}
a {
text-decoration:none;
}
h2, h3 {
margin:0 0 20px;
text-shadow:2px 2px #ffffff;
}
h2 {
font-size:28px;
}
h3 {
font-size:22px;
}
.content {
padding:40px;
width:500px;
margin:30px auto;
}
.nav {
list-style:none;
}
.nav li {
float:left;
}
.nav a {
position:relative;
display:block;
padding:4px 8px;
border-bottom:2px solid #ccc;
background:#f4f4f4;
color:#999;
-webkit-transition:all 200ms ease-out;
-moz-transition:all 200ms ease-out;
-o-transition:all 200ms ease-out;
transition:all 200ms ease-out;
}
.nav a:hover {
color:#000;
background:#fff;
border-color:#000;
padding:8px;
top:-4px;
}
.nav .selected a, .nav .selected a:hover {
background:#444;
color:#fff;
border-color:#000;
}
.nav2 {
list-style:none;
}
.nav2 li {
float:left;
position:relative;
}
.nav2 a {
display:block;
float:left;
border:none;
position:relative;
height:22px;
overflow:hidden;

1 2  下一页

Tags:css 实现 带有

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接