今天遇到一个问题,一张图片, 满屏显示, 要适应不同的手机屏幕大小, 第一次用的。 background-size: cover发现 手机小米2S, 背景图片, 会失真,解决办法是 background-size: 100% auto下面是 其它的 各个属性:
分类:
Web程序 时间:
2015-07-15 12:59:44
阅读次数:
129
Wildcard Matching
'?' Matches any single character.
'*' Matches any sequence of characters (including the empty sequence).
The matching should cover the entire input string (not partial).
Th...
分类:
其他好文 时间:
2015-07-12 09:48:13
阅读次数:
170
题目mplement regular expression matching with support for '.' and '*'.'.' Matches any single character.
'*' Matches zero or more of the preceding element.The matching should cover the entire input string...
分类:
其他好文 时间:
2015-07-07 16:54:00
阅读次数:
201
This course is going to really cover the foundations of robotics(mathematical models).模型的运动学特性,驱动系统actuate the system, motors,正确的转矩让robort move,1. if ...
分类:
其他好文 时间:
2015-06-30 20:12:33
阅读次数:
148
I want to have one OBD scanner for most worldwide famous car models, no need cover truck models. I only want to do basic OBD diagnosing, not programmi...
分类:
其他好文 时间:
2015-06-26 10:42:12
阅读次数:
130
以下代码中有Xcode中常见的3种注释/**
* 阴影 注释(1)这种注释在饮用cover时会出现在解释中
*/
@property (weak,nonatomic) IBOutlet UIButton *cover;
/**
* 控制状态栏的样式
* 注释(2)
* @return UIStatusBarStyleLightContent
*/
5. (UIStatusB...
分类:
其他好文 时间:
2015-06-22 06:29:48
阅读次数:
134
S向每头奶牛连边,容量1每个防晒霜向T连边,容量cover每头奶牛向SPF在自己范围内的防晒霜连边,容量inf用线段树优化建图跑最大流即可。#includeconst int N=7010,inf=~0U>>2;struct edge{int t,f;edge*nxt,*pair;}*g[N],*d...
分类:
其他好文 时间:
2015-06-21 21:07:22
阅读次数:
123
Background-Size:[|| auto ]{1,2} | cover | containbackground-size指定背景大小,以象素或百分比显示。当指定为百分比时,大小会由所在区域的宽度、高度,以及background-origin的位置决定。还可以通过cover和contain来对...
分类:
其他好文 时间:
2015-06-19 10:07:53
阅读次数:
107
最初的代码:1 .container_first {2 width: 100%;3 height: 100%;4 background: url(10176581.jpg);5 background-size: cover;6 position: relati...
分类:
Web程序 时间:
2015-06-18 21:29:22
阅读次数:
263
一般图的最小点覆盖问题是是一个npc问题,目前哈没有比较好的多项式的算法。但是这题有一点特殊的地方,每条边必定包含前面30个点的的一个,所以这题可以枚举钱30个点的选和不选的状态,后面的点对应的状态就唯一了。 所以这题就是 dfs+可行性减枝和答案最优减枝。
#include
#include
#include
#include
#include
#include
#include
#i...
分类:
其他好文 时间:
2015-06-18 15:22:55
阅读次数:
269