css过渡效果

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
div{
width: 100px;
height: 100px;
line-height: 100px;
text-align: center;
background-color: pink;
/*transition: width 8s ease 0s,height 8s,border-radius 8s; */ /*属性 持继多长时间 曲线 何时开始,多组属性用豆号分隔*/
transition: all 8s; /*all 表示所有属性,后面两个属性可以省略*/

}
div:hover{
width: 200px;
height: 200px;
font-size:30px;
line-height: 200px;
border-radius: 50%;
color:red;
</style>
</head>
<body>
<div>零度雨</div>

</body>
</html>

猜你喜欢

转载自www.cnblogs.com/pcjbk/p/10201764.html
今日推荐