1.屏幕尺寸(screen size)就是我们平常讲的手机屏幕大小,是屏幕的对角线长度,一般讲的大小单位都是英寸。比如iPhone5S的屏幕尺寸是4英寸。Samsung Note3是5.7英寸。2.像素(pixel)想像把屏幕放大再放大,对!看到的那一个个小点或者小方块就是像素了。3.分辨率(Res...
分类:
移动开发 时间:
2014-07-28 11:19:50
阅读次数:
312
B - 母函数入门1
Time Limit:1000MS Memory Limit:32768KB 64bit IO Format:%I64d & %I64u
Submit Status
Description
假设有x1个字母A, x2个字母B,..... x26个字母Z,同时假设字母A的价值为1,字母B的价值为2,..... 字母Z的价值为26。那么...
分类:
其他好文 时间:
2014-07-27 11:55:54
阅读次数:
251
【Stencil】 The stencil buffer can be used as a general purpose per pixel mask for saving or discarding pixels. The stencil buffer is usually an 8 bit.....
分类:
其他好文 时间:
2014-07-26 16:51:21
阅读次数:
267
除这一行外,下面全部内容都是转载。出处不明。国内三大PT(Private Tracker)站分析先郑重的声明一下:本文以下的内容所有是复制粘贴的,不代表老夫的观点。事实上内容我也没细致看。 贴这些是为了给空间做SEO。谢谢!本空间的几篇关于中国高清PT站的文章在这里~ 如今在百度上搜索HDC,空间的...
分类:
其他好文 时间:
2014-07-26 14:11:26
阅读次数:
1079
NAT(NetworkAddressTranslation,网络地址转换)是将IP数据包头中的IP地址转换为另一个IP地址的过程。在实际应用中,NAT主要用于实现私有网络访问公共网络的功能。这种通过使用少量的公有IP地址代表较多的私有IP地址的方式,将有助于减缓可用IP地址空间的枯竭。NAT有三种方式..
分类:
其他好文 时间:
2014-07-26 03:29:07
阅读次数:
283
public class PxAndDp {
/**
* 根据手机的分辨率从 dp 的单位 转成为 px(像素)
*/
public static int dip2px(Context context, float dpValue) {
final float scale = context.getResources().getDisplayMetrics().density;
...
分类:
移动开发 时间:
2014-07-26 02:36:36
阅读次数:
276
var bgWidth = document.body.clientWidth + 'px', bgHeight = document.body.clientHeight + 'px', alertBgNode = $('.alertMessage...
分类:
其他好文 时间:
2014-07-25 18:58:01
阅读次数:
237
color:设定一个标签中的文字的颜色,颜色值可以使用英文单词,16进制语法和rgb语法:font-size: 设定文字大小,单位通常为像素(px)—— 一般的商业网站的文字大小通常都是12px。font-weight: 设置文字粗体(bold)或非粗体(normal)。font-style: 设置...
分类:
Web程序 时间:
2014-07-25 18:55:41
阅读次数:
382
通过Canvas及File API缩放并上传图片 上 传 MegaPixImage.js/*** Mega pixel ...
分类:
Windows程序 时间:
2014-07-24 12:21:25
阅读次数:
2203
1、编写calloc,内部用malloc。
void *calloc (size_t n, size_t size)
{
char * memory;
memory =(char*) malloc(n * size);
while( memory != NULL)
{
char * ptr;
ptr = memory;
while ( --n >= 0)
{
*pt...
分类:
其他好文 时间:
2014-07-23 22:40:17
阅读次数:
409