码迷,mamicode.com
首页 >  
搜索关键字:cover    ( 574个结果
css3新增的background属性
1、background-size可取值:auto(背景图片正常显示) size size (150px 40%) cover (背景图片覆盖整个背景) contain(背景图片缩小填满整个背景)实例: /*这段代码是当不支持CSS3 Media Queries浏览器按back...
分类:Web程序   时间:2015-03-31 12:15:27    阅读次数:131
css2和CSS3的background属性简写
1、css2:background:background-color || url("") || no-repeat || scroll || 0 0; css3: background: url("") || 0 0/cover || no-repeat || scroll || border-....
分类:Web程序   时间:2015-03-31 12:07:14    阅读次数:454
【LeetCode】【C++】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).The function prototype should...
分类:编程语言   时间:2015-03-21 12:43:07    阅读次数:190
LeetCode-44 Wildcard Matching
'?' Matches any single character.'*' Matches any sequence of characters (including the empty sequence).The matching should cover the entire input stri...
分类:其他好文   时间:2015-03-18 17:20:10    阅读次数:112
leetcode题解||Regular Expression Matching 问题
problem: Implement regular expression matching with support for '.' and '*'. '.' Matches any single character. '*' Matches zero or more of the preceding element. The matching should cover the entir...
分类:其他好文   时间:2015-03-18 12:26:30    阅读次数:127
LPC1788的ADC和DAC使用
#ifndef __ADC1_H_#define __ADC1_H_#include "common.h"#include "delay.h"void adc_init(u8 ch,u8 div);u16 adc_cover(u8 ch);#endif#include "adc1.h"void ad...
分类:其他好文   时间:2015-03-15 07:03:34    阅读次数:350
Python学习笔记-函数篇
![cover](http://img5.duitang.com/uploads/item/201408/31/20140831102529_Ht4Cs.thumb.700_0.png) ## 定义 ### 返回单值 def my_abs(x): if x >= 0: return x else: return -x ### 返回多值 返回多值就是返回一...
分类:编程语言   时间:2015-03-14 23:21:00    阅读次数:2182
Linux内核源代码情景分析-中断上半部
一、中断初始化    1、中断向量表IDT的初始化void __init init_IRQ(void) { int i; #ifndef CONFIG_X86_VISWS_APIC init_ISA_irqs(); #else init_VISWS_APIC_irqs(); #endif /* * Cover the whole vector space, no vector can...
分类:系统相关   时间:2015-03-13 09:24:36    阅读次数:291
HUST 1017 Exact cover (Dancing links)
1017 - Exact cover时间限制:15秒内存限制:128兆自定评测6110 次提交 3226 次通过题目描述There is an N*M matrix with only 0s and 1s, (1 2 #include 3 using namespace std; ...
分类:其他好文   时间:2015-03-12 16:55:35    阅读次数:143
iOS 不使用UINavigationController实现Push动画
转自廖雪峰在iOS开发中,如果使用UINavigationController,配合Storyboard+Push模式的Segue,默认情况下,可以直接实现左右推出的View切换效果。但是,如果不使用UINavigationController时,把Segue设置为Push,运行就会直接报错,而Model模式的Segue只有Cover Vertical,Flip Horizontal,Cross D...
分类:移动开发   时间:2015-03-11 10:59:46    阅读次数:212
574条   上一页 1 ... 44 45 46 47 48 ... 58 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!