CSS3 过渡效果(transition)


CSS 过渡

CSS 过渡允许您在给定的时间内平滑地改变属性值。

请把鼠标移动到这个元素上,来查看 CSS 过渡效果:

CSS

在本章中,您将学习如下属性:

  • transition
  • transition-delay
  • transition-duration
  • transition-property
  • transition-timing-function

对过渡的浏览器支持

表格中的数字注明了完全支持该属性的首个浏览器版本。

属性
transition26.010.016.06.112.1
transition-delay26.010.016.06.112.1
transition-duration26.010.016.06.112.1
transition-property26.010.016.06.112.1
transition-timing-function26.010.016.06.112.1

如何使用 CSS 过渡?

如需创建过渡效果,必须明确两件事:

  • 您要添加效果的 CSS 属性
  • 效果的持续时间

注意:如果未规定持续时间部分,则过渡不会有效果,因为默认值为 0。下面的例子展示了 100px * 100px 的红色 <div> 元素。 <div> 元素还为 width 属性指定了过渡效果,持续时间为 2 秒:

  1. div {
  2. width: 100px;
  3. height: 100px;
  4. background: red;
  5. transition: width 2s;
  6. }

当指定的 CSS 属性(width)值发生变化时,将开始过渡效果。

现在,让我们为 width 属性指定一个鼠标悬停在 <div> 元素上时的新值:

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. div {
  6. width: 100px;
  7. height: 100px;
  8. background: red;
  9. transition: width 2s;
  10. }
  11. div:hover {
  12. width: 300px;
  13. }
  14. </style>
  15. </head>
  16. <body>
  17. <h1>transition 属性</h1>
  18. <p>请把鼠标悬停在下面的 div 元素上,来查看过渡效果:</p>
  19. <div></div>
  20. <p><b>注释:</b>本例在 Internet Explorer 9 和更早版本中不起作用。</p>
  21. </body>
  22. </html>

请注意,当光标从元素上移开时,它将逐渐变回其原始样式。


改变若干属性值

下面的例子为 width 和 height 属性都添加了过渡效果,width 是 2 秒,height 是 4 秒:

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. div {
  6. width: 100px;
  7. height: 100px;
  8. background: red;
  9. transition: width 2s, height 4s;
  10. }
  11. div:hover {
  12. width: 300px;
  13. height: 300px;
  14. }
  15. </style>
  16. </head>
  17. <body>
  18. <h1>transition 属性</h1>
  19. <p>请把鼠标悬停在下面的 div 元素上,来查看过渡效果:</p>
  20. <div></div>
  21. <p><b>注释:</b>本例在 Internet Explorer 9 和更早版本中不起作用。</p>
  22. </body>
  23. </html>

指定过渡的速度曲线

transition-timing-function 属性规定过渡效果的速度曲线。transition-timing-function 属性可接受以下值:

  • ease - 规定过渡效果,先缓慢地开始,然后加速,然后缓慢地结束(默认)
  • linear - 规定从开始到结束具有相同速度的过渡效果
  • ease-in -规定缓慢开始的过渡效果
  • ease-out - 规定缓慢结束的过渡效果
  • ease-in-out - 规定开始和结束较慢的过渡效果
  • cubic-bezier(n,n,n,n) - 允许您在三次贝塞尔函数中定义自己的值

下面的例子展示了可以使用的一些不同的速度曲线:

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. div {
  6. width: 100px;
  7. height: 100px;
  8. background: red;
  9. transition: width 2s;
  10. }
  11. #div1 {transition-timing-function: linear;}
  12. #div2 {transition-timing-function: ease;}
  13. #div3 {transition-timing-function: ease-in;}
  14. #div4 {transition-timing-function: ease-out;}
  15. #div5 {transition-timing-function: ease-in-out;}
  16. div:hover {
  17. width: 300px;
  18. }
  19. </style>
  20. </head>
  21. <body>
  22. <h1>transition-timing-function 属性</h1>
  23. <p>请把鼠标悬停在下面的 div 元素上,来查看不同的速度曲线:</p>
  24. <div id="div1">linear</div><br>
  25. <div id="div2">ease</div><br>
  26. <div id="div3">ease-in</div><br>
  27. <div id="div4">ease-out</div><br>
  28. <div id="div5">ease-in-out</div><br>
  29. <p><b>注释:</b>本例在 Internet Explorer 9 和更早版本中不起作用。</p>
  30. </body>
  31. </html>

延迟过渡效果

transition-delay 属性规定过渡效果的延迟(以秒计)。

下例在启动之前有 1 秒的延迟:

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. div {
  6. width: 100px;
  7. height: 100px;
  8. background: red;
  9. transition: width 3s;
  10. transition-delay: 1s;
  11. }
  12. div:hover {
  13. width: 300px;
  14. }
  15. </style>
  16. </head>
  17. <body>
  18. <h1>transition-delay 属性</h1>
  19. <p>请把鼠标悬停在下面的 div 元素上,来查看过渡效果:</p>
  20. <div></div>
  21. <p><b>注释:</b>过渡效果在开始之前有 1 秒的延迟。</p>
  22. <p><b>注释:</b>本例在 Internet Explorer 9 和更早版本中不起作用。</p>
  23. </body>
  24. </html>

过渡 + 转换

下例为转换添加过渡效果:

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. div {
  6. width: 100px;
  7. height: 100px;
  8. background: red;
  9. transition: width 2s, height 2s, transform 2s;
  10. }
  11. div:hover {
  12. width: 300px;
  13. height: 300px;
  14. transform: rotate(180deg);
  15. }
  16. </style>
  17. </head>
  18. <body>
  19. <h1>Transition + Transform</h1>
  20. <p>请把鼠标悬停在下面的 div 元素上:</p>
  21. <div></div>
  22. <p><b>注释:</b>本例在 Internet Explorer 9 和更早版本中不起作用。</p>
  23. </body>
  24. </html>

更多过渡实例

您可以可以一一指定 CSS 过渡属性,如下所示:

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. div {
  6. width: 100px;
  7. height: 100px;
  8. background: red;
  9. transition-property: width;
  10. transition-duration: 2s;
  11. transition-timing-function: linear;
  12. transition-delay: 1s;
  13. }
  14. div:hover {
  15. width: 300px;
  16. }
  17. </style>
  18. </head>
  19. <body>
  20. <h1>逐一指定过渡属性</h1>
  21. <p>请把鼠标悬停在下面的 div 元素上,来查看过渡效果:</p>
  22. <div></div>
  23. <p><b>注释:</b>过渡效果在开始之前有 1 秒的延迟。</p>
  24. <p><b>注释:</b>本例在 Internet Explorer 9 和更早版本中不起作用。</p>
  25. </body>
  26. </html>

或使用简写的 transition 属性:

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. div {
  6. width: 100px;
  7. height: 100px;
  8. background: red;
  9. transition: width 2s linear 1s;
  10. }
  11. div:hover {
  12. width: 300px;
  13. }
  14. </style>
  15. </head>
  16. <body>
  17. <h1>使用 transition 简写属性</h1>
  18. <p>请把鼠标悬停在下面的 div 元素上,来查看过渡效果:</p>
  19. <div></div>
  20. <p><b>注释:</b>过渡效果在开始之前有 1 秒的延迟。</p>
  21. <p><b>注释:</b>本例在 Internet Explorer 9 和更早版本中不起作用。</p>
  22. </body>
  23. </html>

CSS 过渡属性

下表列出了所有 CSS 过渡属性:

属性描述
transition简写属性,用于将四个过渡属性设置为单一属性。
transition-delay规定过渡效果的延迟(以秒计)。
transition-duration规定过渡效果要持续多少秒或毫秒。
transition-property规定过渡效果所针对的 CSS 属性的名称。
transition-timing-function规定过渡效果的速度曲线。

分类导航