x
 
<!DOCTYPE html>
<html>
<head>
<style> 
#myDIV {
  width: 300px;
  height: 200px;
  border: 1px solid black;
  animation: mymove 5s infinite;
}
@keyframes mymove {
  50% {border-bottom-left-radius: 150px;}
}
</style>
</head>
<body>
<h1>border-bottom-left-radius 的动画效果:</h1>
<p>逐渐将 border-bottom-left-radius 属性从 0 改为 150px,然后再改回:<p>
<div id="myDIV"></div>
<p><b>注释:</b>CSS 动画在 Internet Explorer 9 以及更早版本中不起作用。</p>
</body>
</html>