10 2017 档案

摘要:0. 浏览器读取选择器是从右向左依次选择 0.选择器的权重 1.盒子模型 2.css3新属性,伪类,伪元素,锚伪点 3.实现垂直水平居中 4.link和@import区别 5.清除浮动的原理 阅读全文
posted @ 2017-10-23 11:30 小结巴巴吧 阅读(151) 评论(0) 推荐(0)
摘要:function UrlOption(url) { this.url = url || ''; this.init(); this.change = function (url) { this.url = url this.init(); } this.getP... 阅读全文
posted @ 2017-10-20 16:23 小结巴巴吧 阅读(275) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2017-10-20 14:47 小结巴巴吧 阅读(236) 评论(0) 推荐(0)
摘要:var arr = [343, 435, 23, 345, 234, 766, 436, 235, 578, 34, 56, 1, 57, 3] function Bubble() { /* * 内层的循环比较相邻的两个数字,比较---交换,将最大值调整到末尾 * 外层的循环每一次确定一个最大值到末尾 ... 阅读全文
posted @ 2017-10-20 13:58 小结巴巴吧 阅读(299) 评论(0) 推荐(0)
摘要:function Node(data,left,right) { this.left=left this.right=right this.data=data } function Btr() { this.root = null; } // D:根节点 L:左子节点 R:右子节点 ... 阅读全文
posted @ 2017-10-19 18:27 小结巴巴吧 阅读(638) 评论(0) 推荐(0)
摘要:GetUserMedia实例 1 2 3 4 5 6 7 ... 阅读全文
posted @ 2017-10-11 17:17 小结巴巴吧 阅读(171) 评论(0) 推荐(0)