css3 动画 专场曲线

大城市里の小女人 提交于 2020-02-12 23:20:25

<!DOCTYPE html>
<html>
<head>
<title>转场曲线</title>
<style type="text/css">
.content div{
width: 100px;
height: 30px;
margin-top: 30px;
background-color: blue;

}
.content>div:nth-child(1){
transition: all 5s ease;
}
.content>div:nth-child(2){
transition: all 5s linear;
}
.content>div:nth-child(3){
transition: all 5s ease-in;
}
.content>div:nth-child(4){
transition: all 5s ease-out;
}
.content>div:nth-child(5){
transition: all 5s ease-in-out;
}
.content:hover div{
width: 800px;
}
</style>
</head>
<body>
<div class="content">
<div>ease</div>
<div>linear</div>
<div>ease-in</div>
<div>ease-out</div>
<div>ease-in-out</div>
</div>
</body>
</html>

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!