We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
.box { width: 100px; height: 100px; background: red; animation: boxChange 3s ease; -webkit-animation: boxChange 3s ease; } @keyframes boxChange { from {background: red;} to {background: yellow;} } @-webkit-keyframes boxChange { from {background: red;} to {background: yellow;} }
animation: animation-name animation-duration animation-timing-function animation-delay animation-delay animation-direction animation-play-state;
animation-name
animation-duration
animation-timing-function
animation-delay
animation-direction
animation-play-state
.box { width: 100px; height: 100px; background: red; transition: width 2s; -webkit-transition: width 2s; } .box:hover { width: 300px; }
transition: transition-property transition-duration transition-timing-function transition-delay;
transition-property
transition-duration
transition-timing-function
transition-delay
matrix(a,b,c,d,e,f) 变换后的x坐标:ax+by+e;y坐标:bx+dy+f 参考:https://www.zhangxinxu.com/wordpress/2012/06/css3-transform-matrix-%e7%9f%a9%e9%98%b5/
The text was updated successfully, but these errors were encountered:
No branches or pull requests
一、animation动画
二、transition过渡
三、transform转换
2D转换
3D转换
The text was updated successfully, but these errors were encountered: