<html>
<head>
<meta charset='utf-8'>
<title>transition</title>
<style type='text/css'>
p{
width:100px;
height:100px;
background-color:antiquewhite
}
p:hover{
width:200px;
height:200px;
background-color:#ffad2a;
transition-delay:150ms;
transition-duration:500ms;
transition-property:background-color
}
</style>
</head>
<body>
<p></p>
</body>
</html>
贝塞尔曲线
<html>
<head>
<meta charset='utf-8'>
<title>animation</title>
<style type='text/css'>
p{
width:100px;
height:100px;
background-color:antiquewhite
}
p:hover{
width:200px;
height:200px;
background-color:#ffad2a;
transition-delay:150ms;
transition-duration:1000ms;
transition-timing-function:ease-in-out
}
</style>
</head>
<body>
<p></p>
</body>
</html>