九月第四周学习笔记

CSS

  • .food>li{样式}包含选择器,即加入空格,用于选择指定标签元素下的后辈元素。
  • * {color:red;}通用选择器,匹配html中所有标签元素
  • 伪类选择器
    * 元素:hover{样式} hover 样式
  • 元素,元素2{样式}多个元素相同样式
  • 背景居中缩放填充满屏幕
body{
   background:url(./images/background.jpg)  no-repeat center center;
   background-size:cover;
   background-attachment:fixed;
   background-color:#CCCCCC;
}
  • font-style:italic;文字斜体
  • text-decoration:underline;文字下划线
  • text-decoration:line-through;文字删除线
  • text-indent:2em;首行缩进
  • letter-spacing:50px;字间距
  • word-spacing:50px;单词间距
  • text-align:center;文字图片在 div 中居中
  • text-align:left;文字图片在 div 左对齐
  • text-align:right;文字图片在 div 中右对齐

JavaScript

  • alert(typeof 变量);输出变量的字符类型

  • weindow.onload=function(){};预加载

  • document.getElementById();获取id

  • parseInt()将字符串转成数字(从左到右检索,遇到非数字直接跳出)(整数)

  • 变量.onclick=function(){};点击事件

  • alert();弹窗输出

  • 条件判断?执行操作1:执行操作2if语句简易写法(三木写法)

  • 循环语句:for/while
    * break,直接跳出
    * continucontinue 跳过当前循环

术语

  • string 字符串

  • number 数字

  • boolean 布尔值

  • function 函数

  • object 对象

  • undefined 未定义

  • NaN 非数字

  • null 空对象

  • undefind 空

  • 变量本身没有类型,看变量存了什么类型

  • 一个变量应该只存放一种类型

HTML/CSS

你可能感兴趣的:(九月第四周学习笔记)