<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
</head>
<style>
    .box{width:100px;height:100px;background:red;transition:3s width,2s 1s height,3s 3s background;}
    .box:hover{width:500px;height:600px;background:blue;}
</style>
<body>
    <div class="box">
        
    </div>
</body>

</html>

transition-property  要运动的样式  (all || [attr] || none)
transition-duration 运动时间
transition-delay 延迟时间
transition-timing-function 运动形式
ease:(逐渐变慢)默认值
linear:(匀速)
ease-in:(加速)
ease-out:(减速)
ease-in-out:(先加速后减速)
cubic-bezier 贝塞尔曲线( x1, y1, x2, y2 ) http://matthewlein.com/ceaser/

posted on 2017-01-23 16:31  floated  阅读(188)  评论(0编辑  收藏  举报