<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>

相关文章:

  • 2021-10-31
  • 2021-06-06
  • 2022-12-23
  • 2022-12-23
  • 2021-11-19
  • 2022-12-23
猜你喜欢
  • 2022-02-11
  • 2021-07-15
  • 2021-04-05
  • 2022-12-23
  • 2022-12-23
  • 2021-12-13
  • 2021-06-05
相关资源
相似解决方案