要實現box-shadow的動畫效果,可以使用CSS3的transition屬性來實現。以下是一個示例代碼:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Box Shadow Animation</title>
<style>
.box {
width: 200px;
height: 200px;
background-color: #f0f0f0;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
transition: box-shadow 0.5s ease;
}
.box:hover {
box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}
</style>
</head>
<body>
<div class="box"></div>
</body>
</html>
在上面的示例中,當鼠標懸停在box元素上時,box-shadow的效果會從原來的10px漸變到20px,持續時間為0.5秒,采用ease的緩動函數。這樣就實現了box-shadow的動畫效果。您可以根據需要調整box-shadow的屬性和transition的值來實現不同的動畫效果。