css3:圆角,阴影,rgba,transition动画,transform变换,animation动画

圆角:       

分设四角:border-radius:30px 60px 120px 150px;    

设置左上角:border-top-left-radius:30px 60px;        

设置四个圆角相同:border-radius:50%;(正圆)

阴影:

box-shadow:h-shadow v-shadow blur spread color inset;                  

水平偏移 垂直偏移 羽化大小 扩展大小 颜色 是否内阴影rgba:rgba(0,0,0,0.1)第四个为透明度

transition动画:       

 transition-property:设置过渡的属性 eg:{transition-property:width/height/background-color}        transition-duration:设置过渡的时间 eg:1s 500ms        transition-timing-function:设置过渡的运动方式                

 linear:匀速                 

ease:开始和结束慢速                

 ease-in:开始是慢速                 

ease-out:结束时慢速                 

ease-in-out:开始和结束时慢速    

cubic-bezier(n,n,n,n):曲线设置,用时查找    

transition-delay:设置动画的延迟    

transition: property duration timing-function delay 同时设置四个属性

transform变换:        

translate(x,y):设置盒子位移    (x为水平方向上,y为垂直方向上)       

 scale(x,y):设置盒子缩放        

rotate(deg):设置盒子旋转        

skew(x-angle,y-angle):设置盒子斜切    (单位为deg)        perspective:设置透视距离(通常设为800px)        transform-style flat | preserve-3d:设置盒子是否按3d空间显示       

 translateX、translateY、translateZ:设置三维移动        rotateX、rotateY、rotateZ:设置三维旋转        

scaleX、scaleY、scaleZ:设置三维缩放        

tranform-origin:设置变形的中心点        

backface-visibility:设置盒子背面是否可见    {backface-visibility:hidden;(背面不可见)}

animation动画:    

@keyframes:定义关键帧动画     

animation-name:动画名称        

animation-duration:动画时间        

animation-timing-function:动画曲线

linear:匀速

ease:开始和结束慢速

ease-in:开始是慢速

ease-out:结束时慢速

ease-in-out:开始和结束时慢速

steps:动画步数        

animation-delay:动画延迟        

animation-iteration-count:动画播放次数

 animation-directionnormal:默认动画结束不返回Alternate:动画结束后返回        

animation-play-state:动画状态

paused:中断

running:运动注意:        

羽化大小不可为负        

deg为度数单位        

perspective一般值为800px        

正值沿轴顺时针旋转;负值逆时针旋转 


你可能感兴趣的:(css3:圆角,阴影,rgba,transition动画,transform变换,animation动画)