border-radius结合transition的一个小应用(动画)
Posted sarah
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了border-radius结合transition的一个小应用(动画)相关的知识,希望对你有一定的参考价值。
<head lang="en">
<meta charset="UTF-8">
<title></title>
<style type="text/css">
.box{
display:block;
height:350px;
width:250px;
background:#ddd;
cursor:pointer;
-webkit-transition: 0.4s;
-moz-transition: 0.4s;
-ms-transition: 0.4s;
-o-transition: 0.4s;
transition: 0.4s;
}
.box:hover{
border-top-right-radius:180px 120px;background: rgba(246,246,247,0.9);
}
</style>
</head>
<body>
<a class="box"></a>
</body>
</html>
以上是关于border-radius结合transition的一个小应用(动画)的主要内容,如果未能解决你的问题,请参考以下文章