当前位置: 网站建设 > 网页设计 > 建站经验 >

CSS3实例教程 transitions测试学习

时间:2013-03-02 03:42来源:未知 作者:admin 点击:

标签:CSS3实例教程 transitions测试学习 测试(7)transitions(1)教程(56)学习(19)T(9)CSS3(90)实例(55)
Tag:测试 学习 教程 实例 --> [网站建设之]CSS3实例教程:transitions测试学习 !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN html xmlns= head meta http-equiv=Content-Type content=text/html; charset=utf-8 / titletransitons/title st
CSS3实例教程 transitions测试学习》文章地址:http://www.tfxk.com/wangyesheji/jianzhanjingyan/0302332232013.htm
Tag:测试   学习   教程   实例    

 

--> [网站建设之]CSS3实例教程:transitions测试学习

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "
<html xmlns="
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>transitons</title>
<style type="text/css">
.transitions{
background:#000,CSS3实例教程 box-shadow阴影和表格阴影;
color:#fff;
width:500px;
line-hight:50px;
height:100px;
-moz-transition: background-color 2s linear;
-o-transition:background-color 2s linear;
-webkit-transition:background-color 2s linear,CSS3实例学习教程 data类型的Url; }
.transitions:hover{
background:#f00;}
.test2{
background:#000;
color:#f00;
width:500px;
height:50px;
line-height:50px,CSS3如何制作遨游LOGO;
-webkit-transition-property:background-color;
-webkit-transition-duration:4s,1s; //使用最后一个值
-webkit-transition-timing-function:linear;

-moz-transition-property:background-color;
-moz-transition-duration:4s,1s;//应用第一个值
-moz-transition-timing-function:linear;

-o-transition-propery:background-color;
-o-transition-duration:5s,1s;//使用第一个值
-o-transition-timing-function:linear;

}
.test2:hover{
background-color:#fff,css3基础教程:详解border color;
}
.test3{
color:#f00;
background-color:#00F;
width:500px;
height:50px;
-o-transition:background-color 2s linear,color 2s linear,width 2s linear,height 2s linear;
-webkit-transition:background-color 2s linear,color 2s linear, width 2s linear,CSS3基础教程:详解background-size,height 2s linear;
-moz-transition:background-color 2s linear, color 2s linear,width 2s linear,height 2s linear;
}
.test3:hover{
width:200px;
height:200px;
color:#000;
background-color:#f00;}
.test4{
padding:5px;
line-height:24px;
color:#f00;
background-color:#00F;
width:100%;
background-image:url(../huaban/img/default_pin_bg.gif);
-o-transition:background-color 2s linear,color 2s linear,width 2s linear,height 2s linear,background-image 2s linear;
-webkit-transition:background-color 2s linear,color 2s linear, width 2s linear,height 2s linear,background-image 2s linear;
-moz-transition: background-color 2s linear,color 2s linear,width 2s linear,height 2s linear,background-image 2s linear;
}
.test4:hover{
width:400px;
color:#000;
background-color:#f00;
background-image:url(../huaban/img/login_or.png)} .test5 img{
position:absolute;
top:500px;
left:0;
-webkit-transform:rotate(0deg);
-webkit-transition:left 2s linear,-webkit-transform 2s linear,CSS3基础教程:box-shadow属性;
-moz-transform:rotate(0deg);
-moz-transition:left 2s linear,-moz-transform 2s linear;
-o-transform:rotate(0deg);
-o-transition:left 2s linear,-o-transform 2s linear;
}
.test5:hover img{
position:absolute;
left:100px,css3圆角IE的兼容方法;
-webkit-transform:rotate(720deg);
-moz-transform:rotate(720deg);
-o-transform:rotate(720deg);
} </style>
</head> <body>
<div class="transitions">
<h1>试验文字变色</h1>
my name is Wu Qianqian
</div>
<div class="test2">
<h1>实验文字底色变为底色相似变无的感到</h1> hello
</div>
<,CSS3和jQuery动态时钟制作过程;div class="test3">
<h1>宽高度大小的改变。实现缩放暗藏后果,css3制作网页实例 点击切换不同的CSS列表,平滑渐变</h1> how old are you</div>
<div class="test4">
<h1>,CSS3入门教程:target伪类简介;transition:property duration timing-function 背景图片的转变</h1>
<ol>
<li>propery:表示对那个属性进行平滑过渡的</li>
<li>duration:表示平滑过渡的时光</li>
<li>timing-function:表现通过什么方式进行平滑过渡</li> </ol></div> <div class="test5">
<h1>图片的旋转转动效果,应用定位间隔的属性跟旋转角度的属性</h1>
<img src="../huaban/img/apple-touch-icon-iphone4.png" /> </div>
</body>
</html>

(责任编辑:网站建设)
CSS3实例教程 transitions测试学习相关文章
上一篇:CSS3实例教程 box-shadow阴影和表格阴影 下一篇:CSS3实例教程 使用border-radius制作文本文档图标
回到顶部