摘要: 1.关系型数据库:关系模型 二维表格模型 数据库事务具有ACID特性(actomic,consistency,isolation,durablility)缺点:查询效率低,横向扩展难,性能欠佳。 Oracle,Microsoft SQL Server,MySQL,PostgreSQL,DB2,Mic 阅读全文
posted @ 2019-05-07 16:49 aLittleCoder 阅读(444) 评论(0) 推荐(0) 编辑
摘要: 概述:使用js实现自动播放、无缝连接的轮播图 图片轮播的实质是改变图片相对于父对象的左边距的值,利用offsetLeft获取,利用style.left修改 封装动画函数如下: function animate(element,target) { clearInterval(element.timeI 阅读全文
posted @ 2019-02-10 23:24 aLittleCoder 阅读(252) 评论(0) 推荐(0) 编辑
摘要: HTML: <div id="box"> <input type="text" id="search" value=""> <input type="button" id="btn" value="搜索"> </div> CSS: /*使水平居中*/ body{ position:relative; 阅读全文
posted @ 2019-01-28 16:22 aLittleCoder 阅读(132) 评论(0) 推荐(0) 编辑
摘要: 1.浏览器内核(主要指渲染引擎): webkit 谷歌用的多 Safari 苹果 trident(IE内核) Gecko 火狐用的最多,跨平台 Chromium/Blink 谷歌 移动端 iPhone 和 iPad 等苹果 iOS 平台主要是 WebKit,Android 4.4 之前的 Andro 阅读全文
posted @ 2019-01-18 22:39 aLittleCoder 阅读(96) 评论(0) 推荐(0) 编辑