Less 是什么? Less is more,than CSS. Less就是搞笑高效编写和维护CSS的一种语法。 1.下载Koala考拉,一款国人编写的less开发器。 2.可以用Sublime Text3编写Less文档。 好,开始学习啦! 1. 注释 /*会被编译到css文件的注释*/ //不
分类:
其他好文 时间:
2016-02-29 09:18:38
阅读次数:
147
源代码: 优化前: 优化后代码: <script type="text/javascript"> var oCr = document.getElementById("contentRight"); var oWide = document.getElementById("wide"); var o
分类:
Web程序 时间:
2016-02-29 09:17:50
阅读次数:
220
$(function(){ $("ul").click(function(event){ var tar = event.target; if(tar.tagName == "STRONG"){ alert(tar.tagName); } }); }) 上面是原生JS判断; $(function()
分类:
Web程序 时间:
2016-02-29 09:18:32
阅读次数:
189
下载: https://www.centos.org/download/ 下载说明:(版本区别、下载位置等) http://jingyan.baidu.com/article/ea24bc399e6db8da62b3311e.html CentOS-7.0-1406-x86_64-DVD.iso 标
分类:
其他好文 时间:
2016-02-29 09:20:00
阅读次数:
188
Given two strings s and t, write a function to determine if t is an anagram of s. For example, s = "anagram", t = "nagaram", return true. s = "rat", t
分类:
其他好文 时间:
2016-02-29 09:20:02
阅读次数:
142
1 // 类(某一批对象的的共性和特征)是 对象的 抽象 , 而 对象是类的 具体实例 2 //可以借助结构体类型和 结构体变量来理解 同一个结构体类型 可以定义出 多个结构体变量 3 //C++ 中也是 先声明一个类类型 然后 用 结构体类型去 定义 类变量 4 //类 是抽象的 不占用内存,然而
分类:
其他好文 时间:
2016-02-29 09:17:30
阅读次数:
163
<?php class Lunar { var $MIN_YEAR = 1891; var $MAX_YEAR = 2100; var $lunarInfo = array( array(0,2,9,21936),array(6,1,30,9656),array(0,2,17,9584),array
分类:
Web程序 时间:
2016-02-29 09:18:43
阅读次数:
214
1.Modal: 打开:presentViewController 关闭:dismissViewController 2.Push:需搭配NavigationController使用,采用压栈和出栈的方式 打开:pushViewController 关闭:popViewController 3.Se
分类:
其他好文 时间:
2016-02-29 09:17:25
阅读次数:
146
import datetime as DT#convert character string: '20150212 10:12:11' to datetime type: pTimepTime = DT.datetime.strptime('20150212 10:12:11', '%Y%m%d %
分类:
编程语言 时间:
2016-02-29 09:16:05
阅读次数:
132
In this problem, house are arranged in a circle, robber should not invade into two adjacent houses. Compared to the former problem, we need to conside
分类:
其他好文 时间:
2016-02-29 09:18:13
阅读次数:
152
BZOJ 1001 狼抓兔子 最小割(优化做的足的dinic能过) 平面图转对偶图跑最短路(还没写。。。) BZOJ 1877 晨跑 拆点-->限制每个点跑一次吧每个点拆成两个中间加一条权值为1的边 BZOJ 1066 蜥蜴 裸最大流 BZOJ 1927 星际竞速 建立附加源点流量为能够瞬间移动的次
分类:
其他好文 时间:
2016-02-29 09:17:25
阅读次数:
191
题目链接 AC自动机+DP 有点像GT考试,hh[i][j]表示第i为匹配到自动机上j号结点的方案数 1 #include<algorithm> 2 #include<iostream> 3 #include<cstdlib> 4 #include<cstring> 5 #include<cstdi
分类:
Web程序 时间:
2016-02-29 09:16:28
阅读次数:
209
对话框头文件XXXDlg.h: 1.添加成员变量NOTIFYICONDATA m_nid; 2.添加tray消息响应函数的声明 afx_msg LRESULT OnTrayNotify(WPARAM wParam, LPARAM lParam); 对话框实现文件XXXDlg.cpp: 1.定义tra
分类:
编程语言 时间:
2016-02-29 09:16:07
阅读次数:
175
数字变为字符串 str()字符串变为数字 string.atoi(s,[,base]) //base为进制基数 浮点数转换 string.atof(s)
分类:
编程语言 时间:
2016-02-29 09:14:50
阅读次数:
120
<?xml version="1.0" encoding="UTF-8"?> <configuration> <!--第一步注册url重写模块放到webconfig的最上部--> <configSections> <section name="RewriterConfig" type="URLRew
分类:
Web程序 时间:
2016-02-29 09:14:20
阅读次数:
167
配置FastDFS时,修改配置文件是很重要的一个步骤,理解配置文件中每一项的意义更加重要,所以我参考了大神的帖子,整理了配置文件的解释。原帖如下:http://bbs.chinaunix.net/thread-1941456-1-1.html,因为原帖中的版本比较早,所以我针对现有的版本进行了修改,原帖中没有client.conf的介绍,这里我给加上了。
下文中带有注释的配置文件下载:http:...
分类:
其他好文 时间:
2016-02-29 08:11:48
阅读次数:
207
这就是确定性中毒的表现:常常因为不能确认改变是否能够百分之百成功而无法做出改变。怎么解?...
分类:
其他好文 时间:
2016-02-29 08:13:57
阅读次数:
247