摘要: 本文为思路提示篇,因此未详细述说代码,主要总结思路。 1. dispaly:table-cell; vertical-align:middle; 2. 3. 父元素 relative 其本身absolute;方法同上,top:50%; 4. flexbox 阅读全文
posted @ 2016-08-21 18:53 nostic 阅读(136) 评论(0) 推荐(0) 编辑
摘要: function parseURL(url) { var a = document.createElement('a'); a.href = url; return { source: url, protocol: a.protocol.replace(':',''), host: a.hostname, ... 阅读全文
posted @ 2016-08-21 18:10 nostic 阅读(106) 评论(0) 推荐(0) 编辑
摘要: 开放式系统互联通信参考模型(英语:Open System Interconnection Reference Model,缩写为 OSI),简称为OSI模型 第7层 应用层(Application Layer) 提供为应用软件而设的界面,以设置与另一应用软件之间的通信。例如: HTTP,HTTPS, 阅读全文
posted @ 2016-08-21 08:19 nostic 阅读(336) 评论(0) 推荐(0) 编辑