码迷,mamicode.com
首页 > Web开发 > 详细

CSS3动画--过渡效果

时间:2017-08-19 00:52:54      阅读:261      评论:0      收藏:0      [点我收藏+]

标签::hover   ora   过渡效果   nbsp   alt   margin   技术分享   round   nsf   

CSS3动画--过渡效果

transition                               设置四个过渡属性

transition-property            过渡的名称

transition-duration       过度效果花费的时间

transition-timing function  过渡效果的时间曲线

transition-delay         过渡效果开始时间

1、案例源码

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CSS3动画--过渡效果</title>
<style>
*{margin: 0;padding: 0}
section{width: 200px;height: 200px;background-color: coral;transition:width 2s,height 2s, transform 2s;
margin: 50px auto;}
section:hover{width: 400px;height: 400px;transform:rotate(360deg);}
</style>
</head>
<body>
<section></section>
</body>
</html>

2、案例效果

技术分享

CSS3动画--过渡效果

标签::hover   ora   过渡效果   nbsp   alt   margin   技术分享   round   nsf   

原文地址:http://www.cnblogs.com/qikeyishu/p/7392557.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!