摘要: 0.DOM对象转换 1.元素节点 ①选择器 ②关系 $('.class').siblings() $('.class').find() 子及以后,块级无效 $('.class').children() $('.class').parent() $('.class').next() $('.class 阅读全文
posted @ 2018-04-12 22:46 Yo! 阅读(243) 评论(0) 推荐(0)
摘要: bootstrap3 栅格系统 .container .container-fluid .row .col-xs-* .col-sm-* .col-md-* .col-lg-* .clearfix .col-md-offset-*(列偏移) .col-md-push-* .col-md-pull-* 阅读全文
posted @ 2018-04-12 22:19 Yo! 阅读(232) 评论(0) 推荐(0)
摘要: 0. 基本类型: boolean、number、string、null、undefined、 引用类型: Array、Object(深浅拷贝) ab say no + uneeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee 阅读全文
posted @ 2018-04-03 22:43 Yo! 阅读(381) 评论(0) 推荐(0)
摘要: 新类型 声明变量 解构赋值 字符串 正则 数组 函数 对象 数据结构 历史 -. 参考 1.新类型 symbol 2.声明变量 let 块级作用域,不存在变量提升(需先声明,后使用),且作用域“锁死”(在域里面不能先用在声明) const块级作用域,var函数作用域 var tem = '1' fu 阅读全文
posted @ 2018-04-03 22:30 Yo! 阅读(238) 评论(0) 推荐(0)
摘要: JS ECMAScript ES6 DOM BOM 以妓会友,评赞走起 阅读全文
posted @ 2018-04-03 22:20 Yo! 阅读(198) 评论(0) 推荐(0)
摘要: Hi,world! 结构层:HTML 表示层:CSS -- bootstrap、sass/less 行为层:JS -- Jquery 框架 -- nodejs | angular、vue、react tools 1."关注点分离"(separation of concerns) HTML 语言:负责 阅读全文
posted @ 2018-04-03 22:19 Yo! 阅读(378) 评论(0) 推荐(0)
摘要: 1.定位属性 (position | float/clear | display | z-index | overflow)1.1和1.2不能同用于一个元素 1.1 position: fixed(父级高度和transform:translate(0,100px))、absolute、relativ 阅读全文
posted @ 2018-03-21 16:19 Yo! 阅读(330) 评论(0) 推荐(0)
摘要: 0. ! import>内联>id>class>标签 css定义的权重:!import(10000)、内联(1000)、id(100)、class(10)、标签(1) 1.css中的一些兼容问题 IE:trident内核Firefox:gecko内核safari:webkit内核opera:以前是p 阅读全文
posted @ 2018-03-21 16:19 Yo! 阅读(176) 评论(0) 推荐(0)
摘要: 1.通配选择符: * 2.元素选择符: body、h1、p 3.群组选择符: h1,h2,h3,p(“,”分隔) 4.关系选择符: E F E>F (css1/2/2/3 都作用于F元素) E+F E~F 5.id 及 class选择器(id:锚点用“name”) 6.伪类选择器: E:link E 阅读全文
posted @ 2018-03-21 16:19 Yo! 阅读(328) 评论(0) 推荐(0)
摘要: 1.选择器 2.样式属性 3.布局 4.浏览器原理 [2022:CSS新特性](https://mp.weixin.qq.com/s/2kqorHVPq7BT3oQYGrJLMQ) 阅读全文
posted @ 2018-03-21 16:18 Yo! 阅读(249) 评论(0) 推荐(0)