我可以,等下发你
<!DOCTYPE html>
<html>
<head>
<title>CSS3动画:正方形变成长方形</title>
<style>
.box {
width: 100px;
height: 100px;
background-color: yellow;
border-radius: 0;
transition: all 2s;
}
.box:hover {
width: 300px;
border-radius: 50px 50px 50px 50px;
}
</style>
</head>
<body>
<div class="box"></div>
</body>
</html>