CSS之transition属性

来源:互联网 发布:开淘宝店好做吗 编辑:程序博客网 时间:2024/05/21 21:35

1.鼠标移动到div中背景颜色慢慢变化(1个属性的变化)

<!DOCTYPE html><html><head><title></title><style type="text/css">#block{width: 400px;height: 400px;background: blue;margin: 0 auto;transition: background 3s;}#block:hover{background: red;}</style></head><body><div id="block"></div></body></html>

2.多个属性的变化

transition:属性 时间,属性 时间

3.过度模式

transition:属性 时间 模式

模式:

ease:缓慢开始,缓慢结束

linear:匀速

ease-in:缓慢开始

ease-out:缓慢结束

  ease-in-out:缓慢开始,缓慢结束(和ease稍有区别)