案例:CSS3 案例     状态:可编辑再运行    进入横版
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<style> 
5
div
6
{
7
width:100px;
8
height:100px;
9
background:blue;
10
transition:width 2s;
11
-moz-transition:width 2s; /* Firefox 4 */
12
-webkit-transition:width 2s; /* Safari and Chrome */
13
-o-transition:width 2s; /* Opera */
14
}
15
16
div:hover
17
{
18
width:300px;
19
}
20
</style>
21
</head>
22
<body>
23
24
<div></div>

 运行结果 
 北美留学生论坛