css 中 transition
时间: 2024-07-02 09:01:08 浏览: 164
css3 transition按钮动画特效特效代码
在 CSS 中,`transition` 属性是一个关键帧动画的核心概念,它允许元素在从一种样式状态变化到另一种样式状态的过程中添加平滑的过渡效果。使用 `transition` 可以控制元素在改变尺寸、位置、颜色、透明度等属性时的变化过程,提供更友好的用户体验。
`transition` 的基本语法如下:
```css
transition: property duration timing-function delay;
```
- **property**: 需要过渡的CSS属性,如 `width`, `height`, `background-color` 等。
- **duration**: 过渡的时间长度,可以使用时间单位(秒、毫秒)。
- **timing-function**: 过渡的速度曲线,比如 `ease`, `linear`, `ease-in`, `ease-out`, `ease-in-out` 等。
- **delay**: 在何时开始过渡,延迟了多少时间后开始。
例如:
```css
button {
background-color: red;
transition: background-color 0.5s ease;
}
button:hover {
background-color: blue;
}
```
在这个例子中,当鼠标悬停在按钮上时,背景色会从红色平滑地过渡到蓝色,持续时间为0.5秒,且过渡速度曲线为 `ease`。
阅读全文