css過渡效果
阿新 • • 發佈:2018-12-31
tex char over order borde line back pin width
<!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>
css過渡效果