Transitions功能使用方法
在css3中,transitions功能通过将元素的某个属性从一个属性值在指定的时间内平滑过渡到另一个属性值来实现动画功能,可通过transitions属性来使用transitions功能。
transitions属性的使用方法如下所示:
transitions:property durantion timing-function
其中property表示对哪个属性进行平滑过渡,duration表示在多长时间内完成属性值的平滑过渡,timing-function表示通过什么方法来进行平滑过渡。例子如下:
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Transitions功能的使用示例</title> <style> div{ background-color: #ffff00; -webkit-transition: background-color 1s linear; -moz-transi