js中的call()函数和apply()函数:1、主要作用:是用于指定作用域和传参(1)用于指定作用域 1 window.color = "red"; 2 var o = { color: "blue" }; 3 var sayColor = function () { 4 debugger...
分类:
移动开发 时间:
2014-10-17 18:39:49
阅读次数:
270
============问题描述============ 大家好,在网上看到在电脑上运行Android程序需要安装模拟器,现在流行模拟器有Windroy,Windroye和Bluestacks,有的说Windroy速度快,有的网友说Windroye运行Android兼容性比较好,还有网友支出Blue...
分类:
移动开发 时间:
2014-10-17 11:41:44
阅读次数:
179
请见如下一个闭包示例:color = "red";var obj = { color: "blue", getColor: function () { function displayColor() { return this.color; ...
分类:
编程语言 时间:
2014-10-15 23:03:41
阅读次数:
333
一、RGBRGB色彩模式使用RGB模型为图像中每个像素的RGB分量分配一个0~255范围内的强度值。RGB图像仅仅使用三种颜色,R(red)、G(green)、B(blue),就能够使它们依照不同的比例混合,在屏幕上呈现16777216(256 * 256 * 256)种颜色。在电脑中,RGB的所谓...
分类:
编程语言 时间:
2014-10-15 21:23:01
阅读次数:
343
最近,遇到一个蓝牙的bug,刚开始以为不能发送大的文件,最后追踪代码发现,是不能发送某些文件类型的文件的。
默认之支持所有图片,所有视频,所有音频,文本类型,html,zip,excel,word,ppt,pdf等类型。
要想让其支持你要发送/接收的文件类型需要在相应地方添加相应的类型。
发送的文件类型,需要修改package/app/blue...
分类:
移动开发 时间:
2014-10-15 17:23:11
阅读次数:
259
整理关于IE6、IE7、IE8、Firefox兼容性CSS HACK问题1.区别IE和非IE浏览器CSS HACK代码#divcss5{background:blue; /*非IE 背景藍色*/background:red \9; /*IE6、IE7、IE8背景紅色*/}2.区别IE6,IE7,IE...
分类:
其他好文 时间:
2014-10-15 15:19:20
阅读次数:
206
颜色渐变:/*渐变的类型? (linear)渐变开始的X Y 轴坐标(0 0 – 或者left-top)渐变结束的X Y 轴坐标(0 100% 或者left-bottom)开始的颜色? (from(red))结束的颜色? (to(blue))*/ background: -webkit-gradi....
分类:
其他好文 时间:
2014-10-14 23:59:59
阅读次数:
206
【题目】
Given an array with n objects colored red, white or blue, sort them so that objects of the same color are adjacent, with the colors in the order red, white and blue.
Here, we will use the int...
分类:
其他好文 时间:
2014-10-13 22:00:39
阅读次数:
179
复选框 Checkbox 是 Web 应用常用控件,随处可见,原生的复选框控件一般就像下面这样: 选中状态 未选状态这取决于操作系统和浏览器,有些时候,这种样子并不能满足设计要求,这时需要更为精致的复选框样式。以往只有少数浏览器才支持对这类控件应用样式,比如拿到这样一张设计图:blue.png在过....
分类:
其他好文 时间:
2014-10-13 16:05:29
阅读次数:
226
Given an input string, reverse the string word by word.
For example,
Given s = "the sky is blue",
return "blue is sky the".
click to show clarification.
Clarification:
What constitutes...
分类:
编程语言 时间:
2014-10-13 14:44:09
阅读次数:
190