CSS基础(二)

104 阅读3分钟

动画属性

  1. @keyframes 动画名{ form{top:0px;css-style} to{top:200px;css-style} } @keyframes 动画名{ 0% {css-style} 25% {css-style} 50%{} 75%{} 100%{} }
  2. animation 设置对象所应用的动画特效 语法 animation: name(动画名) duration(指定多长时间可以完成) timing-function(将如何完成一个周期) delay(启动前延迟间隔) interation-count(动画播放次数) direction(是否应该轮流反向播放动画) fill-mode(当动画完成和即将开始阶段应用的元素样式) play-state(指定动画是否正在运行或者已暂停)
  3. background 背景属性 语法 background:bg-color(颜色) bg-image position/bg-size(图像位置和大小) bg-repeat(重复 repeat-X(水平) repeat-Y(垂直) no-repeat(不重复) inherit(继承)) bg-origin(图像定位区域) bg-clip(图片绘画区域) bg-attachment(图像是否固定) initial|inherit;
  4. border 边框
  5. border-width 边框的宽度
  6. border-style 边框的样式 none(无边框) hidden(对表用于解决边框冲突) dotted(定义点状边框) dashed(定义虚线) solid(定义实线) double(定义双线) inherit(继承父元素)
  7. border-color 边框的颜色
  8. border-bottom 对象底部的边框
  • border-bottom-width 底部边框宽度
  • border-bottom-style 底部边框样式
  • border-bottom-color 底部边框颜色
  1. border-color 边框的颜色
  2. border-left
  • border-left-width 底部边框宽度
  • border-left-style 底部边框样式
  • border-left-color 底部边框颜色
  1. border-right 右边边框特性
    • border-right-width 底部边框宽度
    • border-right-style 底部边框样式
    • border-right-color 底部边框颜色
  2. border-radius 对象的圆角边框 左上 右上 左下 右下
  3. border-shadow 向方框添加一个或多个阴影 h-shadow(水平位置) v-shadow(垂直位置) blur(模糊距离) spread(阴影大小) color inset(从外层开始)
  4. 盒子属性 box overflow visible(默认值 内容出现在元素框之外) hidden(溢出隐藏) scroll(内容被修剪) auto (若内容被修剪 会出现滚动条)
  5. roation 对元素进行旋转
  6. color 颜色属性
  7. padding 内边距属性 上 右 下 左
  8. 尺寸属性 height width
  9. flexible box 弹性盒子模型 属性 语法 flex: flex-grow(扩展) flex-shrink(收缩) flex-basis(项目长度)|auto(与1 1auto相同 )|initial(默认值)|inherit(继承);
  10. font 字体属性
  11. 内容生成属性
  12. content 与 :before 以及 :after 伪元素配合使用,来插入生成内容
- none 默认值 
- normal 正常
- counter 设定计数器内容
- string 设置content 到制定的文本
  1. grid 网格属性 columns 宽度 rows 高度
  2. 超链接属性 语法 target :target-name(打开链接的位置), target-new(打开新链接),和target-position(链接位置)
  3. list 列表属性 list-style :列表标记类型 位置 图像
  4. 外边距 margin: 上 右 下 左 margin-bottom 下边距
    • margin : 上 左右 下
    • margin: 上下 左右
    • margin: 四个边距
  5. marquee 字幕属性
  6. column 多列属性
  7. positioning 定位属性
  • bottom 下边距偏移
  • clear 不浮动
  • clip 绝对定位
  • cursor 显示光标的类型
  • display 生成框的类型
  • float 框浮动
  • overflow 溢出
  • position 定位类型