CSS3 过渡效果(transition)
CSS 过渡
CSS 过渡允许您在给定的时间内平滑地改变属性值。
请把鼠标移动到这个元素上,来查看 CSS 过渡效果:
CSS
在本章中,您将学习如下属性:
- transition
- transition-delay
- transition-duration
- transition-property
- transition-timing-function
对过渡的浏览器支持
表格中的数字注明了完全支持该属性的首个浏览器版本。
属性 | |||||
---|---|---|---|---|---|
transition | 26.0 | 10.0 | 16.0 | 6.1 | 12.1 |
transition-delay | 26.0 | 10.0 | 16.0 | 6.1 | 12.1 |
transition-duration | 26.0 | 10.0 | 16.0 | 6.1 | 12.1 |
transition-property | 26.0 | 10.0 | 16.0 | 6.1 | 12.1 |
transition-timing-function | 26.0 | 10.0 | 16.0 | 6.1 | 12.1 |
如何使用 CSS 过渡?
如需创建过渡效果,必须明确两件事:
- 您要添加效果的 CSS 属性
- 效果的持续时间
注意:如果未规定持续时间部分,则过渡不会有效果,因为默认值为 0。下面的例子展示了 100px * 100px 的红色 <div> 元素。 <div> 元素还为 width 属性指定了过渡效果,持续时间为 2 秒:
div {
width: 100px;
height: 100px;
background: red;
transition: width 2s;
}
当指定的 CSS 属性(width)值发生变化时,将开始过渡效果。
现在,让我们为 width 属性指定一个鼠标悬停在 <div> 元素上时的新值:
<!DOCTYPE html>
<html>
<head>
<style>
div {
width: 100px;
height: 100px;
background: red;
transition: width 2s;
}
div:hover {
width: 300px;
}
</style>
</head>
<body>
<h1>transition 属性</h1>
<p>请把鼠标悬停在下面的 div 元素上,来查看过渡效果:</p>
<div></div>
<p><b>注释:</b>本例在 Internet Explorer 9 和更早版本中不起作用。</p>
</body>
</html>
请注意,当光标从元素上移开时,它将逐渐变回其原始样式。
改变若干属性值
下面的例子为 width 和 height 属性都添加了过渡效果,width 是 2 秒,height 是 4 秒:
<!DOCTYPE html>
<html>
<head>
<style>
div {
width: 100px;
height: 100px;
background: red;
transition: width 2s, height 4s;
}
div:hover {
width: 300px;
height: 300px;
}
</style>
</head>
<body>
<h1>transition 属性</h1>
<p>请把鼠标悬停在下面的 div 元素上,来查看过渡效果:</p>
<div></div>
<p><b>注释:</b>本例在 Internet Explorer 9 和更早版本中不起作用。</p>
</body>
</html>
指定过渡的速度曲线
transition-timing-function
属性规定过渡效果的速度曲线。transition-timing-function 属性可接受以下值:
- ease - 规定过渡效果,先缓慢地开始,然后加速,然后缓慢地结束(默认)
- linear - 规定从开始到结束具有相同速度的过渡效果
- ease-in -规定缓慢开始的过渡效果
- ease-out - 规定缓慢结束的过渡效果
- ease-in-out - 规定开始和结束较慢的过渡效果
- cubic-bezier(n,n,n,n) - 允许您在三次贝塞尔函数中定义自己的值
下面的例子展示了可以使用的一些不同的速度曲线:
<!DOCTYPE html>
<html>
<head>
<style>
div {
width: 100px;
height: 100px;
background: red;
transition: width 2s;
}
#div1 {transition-timing-function: linear;}
#div2 {transition-timing-function: ease;}
#div3 {transition-timing-function: ease-in;}
#div4 {transition-timing-function: ease-out;}
#div5 {transition-timing-function: ease-in-out;}
div:hover {
width: 300px;
}
</style>
</head>
<body>
<h1>transition-timing-function 属性</h1>
<p>请把鼠标悬停在下面的 div 元素上,来查看不同的速度曲线:</p>
<div id="div1">linear</div><br>
<div id="div2">ease</div><br>
<div id="div3">ease-in</div><br>
<div id="div4">ease-out</div><br>
<div id="div5">ease-in-out</div><br>
<p><b>注释:</b>本例在 Internet Explorer 9 和更早版本中不起作用。</p>
</body>
</html>
延迟过渡效果
transition-delay
属性规定过渡效果的延迟(以秒计)。
下例在启动之前有 1 秒的延迟:
<!DOCTYPE html>
<html>
<head>
<style>
div {
width: 100px;
height: 100px;
background: red;
transition: width 3s;
transition-delay: 1s;
}
div:hover {
width: 300px;
}
</style>
</head>
<body>
<h1>transition-delay 属性</h1>
<p>请把鼠标悬停在下面的 div 元素上,来查看过渡效果:</p>
<div></div>
<p><b>注释:</b>过渡效果在开始之前有 1 秒的延迟。</p>
<p><b>注释:</b>本例在 Internet Explorer 9 和更早版本中不起作用。</p>
</body>
</html>
过渡 + 转换
下例为转换添加过渡效果:
<!DOCTYPE html>
<html>
<head>
<style>
div {
width: 100px;
height: 100px;
background: red;
transition: width 2s, height 2s, transform 2s;
}
div:hover {
width: 300px;
height: 300px;
transform: rotate(180deg);
}
</style>
</head>
<body>
<h1>Transition + Transform</h1>
<p>请把鼠标悬停在下面的 div 元素上:</p>
<div></div>
<p><b>注释:</b>本例在 Internet Explorer 9 和更早版本中不起作用。</p>
</body>
</html>
更多过渡实例
您可以可以一一指定 CSS 过渡属性,如下所示:
<!DOCTYPE html>
<html>
<head>
<style>
div {
width: 100px;
height: 100px;
background: red;
transition-property: width;
transition-duration: 2s;
transition-timing-function: linear;
transition-delay: 1s;
}
div:hover {
width: 300px;
}
</style>
</head>
<body>
<h1>逐一指定过渡属性</h1>
<p>请把鼠标悬停在下面的 div 元素上,来查看过渡效果:</p>
<div></div>
<p><b>注释:</b>过渡效果在开始之前有 1 秒的延迟。</p>
<p><b>注释:</b>本例在 Internet Explorer 9 和更早版本中不起作用。</p>
</body>
</html>
或使用简写的 transition
属性:
<!DOCTYPE html>
<html>
<head>
<style>
div {
width: 100px;
height: 100px;
background: red;
transition: width 2s linear 1s;
}
div:hover {
width: 300px;
}
</style>
</head>
<body>
<h1>使用 transition 简写属性</h1>
<p>请把鼠标悬停在下面的 div 元素上,来查看过渡效果:</p>
<div></div>
<p><b>注释:</b>过渡效果在开始之前有 1 秒的延迟。</p>
<p><b>注释:</b>本例在 Internet Explorer 9 和更早版本中不起作用。</p>
</body>
</html>
CSS 过渡属性
下表列出了所有 CSS 过渡属性:
属性 | 描述 |
---|---|
transition | 简写属性,用于将四个过渡属性设置为单一属性。 |
transition-delay | 规定过渡效果的延迟(以秒计)。 |
transition-duration | 规定过渡效果要持续多少秒或毫秒。 |
transition-property | 规定过渡效果所针对的 CSS 属性的名称。 |
transition-timing-function | 规定过渡效果的速度曲线。 |