欢迎光临,流星雨博客!!!
  • 65 linear-gradient 线性渐变

    linear-gradient(top,red,#000)

  • 66 radial-gradient 径向渐变

    radial-gradient(center center,red,#000)

  • 67 transform 转换

    rotate(Ndeg) 2D旋转
    scale(x,y)(2D缩放)
    translate(x,y)

  • 68 transition 过渡

    1.属性 property
    2.执行时间 durarion
    3.过渡效果 timing-function
    4.延迟 delay
    linear 线性过渡
    ease 平滑过渡
    ease-in 由慢到快
    ease-out 由快到慢
    ease-in-out 先慢到快再到慢
    cubic-bezier(0,0,0,0)特定的类型

  • 69 box-reflect 倒影

    above 上边
    below 下边
    left 左边
    right 右边

  • 70 animarion 动画

    名称 animarion-name
    时间 animarion-duration
    效果 animarion-timing-function
    延迟 animarion-delay
    循环次数 animarion-iteration-count
    是否反向运动 animarion-direction
    动画的状态播放||暂停 animarion-play-state:paused;暂停
    动画时间之外状态 animarion-mode

  • 71 keyframes 定义动画

    -webkit-谷歌
    -o-欧朋
    -moz-火狐前缀
    -ms- IE前缀

  • 72 media 媒体查询

    @media screen and (max-width:767px){

    }
    @media (min-width: 768px) and ( max-width: 1236px) {

    }

  • 73 background-origin 指定背景图片从哪里开始显示

    border --> 从border显示背景;
    padding --> 从padding显示背景;
    content --> 从content显示背景;

  • 85 :after 元素的内容之后插入新内容

  • 86 :before 元素的内容之前插入新内容

  • 177 flex-direction 属性方向

    flex-direction:row; 默认
    flex-direction:row-reverse; 横向反向
    flex-direction:column; 纵向
    flex-direction:column-reverse;纵向反向