css过渡效果
CSS过渡效果可以使用transition
属性来实现,它允许属性的变化在一定的时间内平滑地进行。
以下是一个简单的例子,演示了如何在鼠标悬停时为元素的背景色添加过渡效果:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSS Transition Example</title>
<style>
.box {
width: 100px;
height: 100px;
background-color: blue;
transition: background-color 0.5s ease-in-out;
}
.box:hover {
background-color: red;
}
</style>
</head>
<body>
<div class="box"></div>
</body>
</html>
在这个例子中,.box
类定义了一个初始的背景色为蓝色,并且指定了一个过渡效果,当鼠标悬停在这个元素上时,背景色会在0.5秒内从蓝色平滑过渡到红色,使用的过渡函数是ease-in-out
。
评论已关闭