CSS3:transform translate transition 这些都是什么?

Posted osimly

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CSS3:transform translate transition 这些都是什么?相关的知识,希望对你有一定的参考价值。

transform:一个属性名称,即CSS3 2D转换 属性。

translate:一个属性函数,用法是translate(dx,dy)

1 div
2 {
3     transform: translate(50px,100px);
4 }

transition:一个属性名称,添加过渡效果。

1 div
2 {
3     width: 200px;
4     transition: width 2s;
5 }
6 
7 div:hover{
8     width: 300px;
9 }

还有动画animate:

 1 @keyframes myfirst
 2 {
 3     from {background: red;}
 4     to {background: yellow;}
 5 }
 6 
 7 div
 8 {
 9     animation: myfirst 5s;
10 }

把 transform 丢到 keyframe 的 from / to 里面就可以实现炫酷的效果。

以上是关于CSS3:transform translate transition 这些都是什么?的主要内容,如果未能解决你的问题,请参考以下文章

css3中transition 过渡效果如何只对transform:scale 起作用,对其它像transform: translate不起作用!

CSS3 transform属性和过渡属性详解

12.CSS3的Transform详解

css3 2D转换效果

搞清animation/transtion/transform/translate

搞清animation/transtion/transform/translate