挂载slider组件后页面底部多出一倍高度的空白,如下: slider组件内容??: css样式??: 解决方法:针对根组件添加样式设置?? 成功解决?? ...
分类:
其他好文 时间:
2017-09-20 14:38:46
阅读次数:
178
http://blog.csdn.net/cleanfield/article/details/41447585 整理后的sql代码,全部可执行 #当年第一天: SELECT DATE_SUB(CURDATE(),INTERVAL dayofyear(now())-1 DAY); #当年最后一天: ...
分类:
数据库 时间:
2017-09-19 19:43:20
阅读次数:
256
一 、安装集群软件 必须软件pcs,pacemaker,corosync,fence-agents-all,如果需要配置相关服务,也要安装对应的软件。 二、配置防火墙1、禁止防火墙和selinux# systemctl disable firewalld# systemctl stop firewa ...
分类:
其他好文 时间:
2017-09-18 14:46:05
阅读次数:
215
时钟效果案例 1、得到现在的时分秒2、旋转角度原理一圈360° 60s 1s/6°旋转second.style.WebkitTransform="rotate(60deg)";//每秒旋转60度 案例: ...
分类:
其他好文 时间:
2017-09-17 23:30:55
阅读次数:
227
A Simple Problem with Integers You have N integers, A1, A2, ... , AN. You need to deal with two kinds of operations. One type of operation is to add s ...
分类:
其他好文 时间:
2017-09-17 15:15:36
阅读次数:
183
///@author Sycamore///@date 9/17/2017///@link http://acm.hdu.edu.cn/showproblem.php?pid=1754#includeusing namespace std;const int MAXN = 200000 + 5;in... ...
分类:
其他好文 时间:
2017-09-17 13:49:29
阅读次数:
121
1.$timeout延时器 2.$interval计时器 点击不可用 ...
分类:
Web程序 时间:
2017-09-16 13:28:04
阅读次数:
204
//计算日期加法 function DateAdd(interval, number, date) { switch (interval) { case "y": { date.setFullYear(date.getFullYear() + number); return date; break;... ...
分类:
Web程序 时间:
2017-09-15 16:50:03
阅读次数:
204
问题:给定两个日期,求它们之间(包括这两个日期本身)有多少个”工作“日。select sum(case when date_format( date_add(jones_hd,interval t500.id - 1, 'DY'),'%a') in ('SAT', 'SUN') then 0 els ...
分类:
其他好文 时间:
2017-09-14 23:58:24
阅读次数:
362