CSS3过渡


CSS3过渡是元素从一种样式逐渐改变为另一种样式的效果

transition-timing-function

1
<div id="con">鼠标移入查看</div>
1
2
3
4
5
6
7
8
9
#con{
width:100px;
height:100px;
background-color: red;
transition: background 3s ease-in;
}
#con:hover{
background-color: yellow;
}

transition-property
过渡多个样式的时候使用all

1
<div id="conn">鼠标移入查看</div>
1
2
3
4
5
6
7
8
9
10
11
#conn{
width:100px;
height:100px;
background-color: red;
transition: all 5s;
}
#conn:hover{
background-color: yellow;
width:200px;
height:200px;
}

文章作者: COOL
版权声明: 本博客所有文章除特別声明外,均采用 CC BY 4.0 许可协议。转载请注明来源 COOL !
评论
  目录