一.把需要做的模板引入带phpcms文件夹:(需要index.html(主体),header(页头),footer.html(页尾)) 二.进入后台设置选项:(点击站点管理->修改;选择你要选用的模板) 三.进入后台内容模型管理设置:选择你要选用的模板 四.进入后台内容管理栏目设置:选择你要选用的模 ...
分类:
Web程序 时间:
2016-12-06 01:52:26
阅读次数:
211
一、cstore_fdw的简介 https://github.com/citusdata/cstore_fdw,此外部表扩展是由citusdata公司开发,使用orc_file格式对数据进行列式存储。 优点1:因为有压缩,所以在disk上的存储大大减少,压缩比能达到2-4倍 优点2:数据内部分块存储 ...
分类:
其他好文 时间:
2016-12-05 11:42:10
阅读次数:
217
Say you have an array for which the ith element is the price of a given stock on day i. If you were only permitted to complete at most one transaction ...
分类:
其他好文 时间:
2016-12-04 06:52:52
阅读次数:
146
第一章 CSS和文档 1、结构化HTML:(个人理解) 1、内容、样式、行为分离 2、标签语义化,什么样的标签做什么样的事 3、符合web标准 4、结构清晰,header、content、footer。减少公共部分的重复代码。 2、非结构化页面使得建立内容索引变得困难;降低可访问性;不利于维护。 3 ...
分类:
Web程序 时间:
2016-12-04 00:21:08
阅读次数:
183
明白何谓Margin Collapse 不同于其他很多属性,盒模型中垂直方向上的Margin会在相遇时发生崩塌,也就是说当某个元素的底部Margin与另一个元素的顶部Margin相邻时,只有二者中的较大值会被保留下来,可以从下面这个简单的例子来学习: 在上述例子中我们会发现,红色和蓝色方块的外边距并 ...
分类:
Web程序 时间:
2016-12-03 23:53:50
阅读次数:
329
搬运工 头:header 内容:content/containe 尾:footer 导航:nav 侧栏:sidebar 栏目:column 页面外围控制整体布局宽度:wrapper 左右中:left right center 登录条:loginbar 标志:logo 广告:banner 页面主体:m ...
分类:
Web程序 时间:
2016-12-03 18:29:14
阅读次数:
182
var scrollFunc = function (e) { var direct = 0; e = e || window.event; if (e.wheelDelta) { //判断浏览器IE,谷歌滑轮事件 if (e.wheelDelta > 0) { //当滑轮向上滚动时 $("#foo ...
分类:
其他好文 时间:
2016-12-02 11:36:12
阅读次数:
185
安装rCharts的方法 install.packages('devtools') library(devtools) require(devtools) install_github(“yummyZhou/recharts”) recharts的安装 install_github(“yummyZh ...
分类:
其他好文 时间:
2016-11-30 16:52:34
阅读次数:
174
第一次写随笔,转载自每天进步一点点 CSS命名规则 头:header 内容:content/containe 尾:footer 导航:nav 侧栏:sidebar 栏目:column 页面外围控制整体布局宽度:wrapper 左右中:left right center 登录条:loginbar 标志 ...
分类:
Web程序 时间:
2016-11-30 14:47:44
阅读次数:
316
html{ height: 100%;} *{ margin: 0; padding: 0;}/* tell the browser to render HTML 5 elements as block */article, aside, figure, footer, header, hgroup ...
分类:
Web程序 时间:
2016-11-29 17:07:41
阅读次数:
246