码迷,mamicode.com
首页 >  
搜索关键字:blue    ( 1833个结果
第一个javascript程序代码
热身 我是第一段文字 我是第二段文字 document.write("hello"); document.getElementById("p1").style.color="blue";//把第一行的字体颜色变蓝色 浏览器里面显示如下: 注意javascript代码写在这里: 表示在之间的是文本类型(text),java...
分类:编程语言   时间:2014-11-04 09:25:39    阅读次数:256
[Leetcode] Sort Colors (C++)
题目:Given an array withnobjects colored red, white or blue, sort them so that objects of the same color are adjacent, with the colors in the order red,...
分类:编程语言   时间:2014-11-04 06:44:21    阅读次数:267
HTML的标签使用
段落标签:段落标签 标题标签:标题标签,x代表1-6 斜体:显示的字体是斜的 粗体:显示的字体是粗的 表示强调, 表示更强烈的强调。并且在浏览器中 默认用斜体表示, 用粗体表示。 :标签是没有语义的,它的作用就是为了设置单独的样式用的。用法如下: span{color:blue;} 我有一个梦想,面朝大海,春暖花开。。。...
分类:Web程序   时间:2014-11-03 10:12:39    阅读次数:199
C# 枚举类型操作
//定义一个枚举 public enum Colors { Red, Green, Blue, Yellow }; //根据key找value string name = Enum.GetName(typeof(Colors), 3);//根据value找key int aa = Colors.Y....
分类:Windows程序   时间:2014-11-03 10:07:23    阅读次数:179
swift 初见-6集合类型与Cocoa Touch混编
// Playground - noun: a place where people can playimport UIKitvar str = "Hello, playground"// color与=号之间必须有个空格let colors =[ "Air Force Blue":(red:...
分类:编程语言   时间:2014-11-01 09:43:28    阅读次数:206
cocos2dx中的CCLayerColor
颜色图层在游戏中主要用来烘托背景,可以按照RGB设置填充颜色,同时还可以设置图层的透明度(opacity),常用于显示背景颜色图层还存在一个特殊的子类:CCLayerGradient,是具有颜色渐变效果的颜色图层可以设置背景的渐变效果,Opacity:透明度ccc4(Red,Green,Blue,O...
分类:其他好文   时间:2014-10-31 23:38:18    阅读次数:227
[LeetCode]Sort Colors
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 integers ...
分类:其他好文   时间:2014-10-31 17:29:05    阅读次数:129
摇一摇
var x, y, z, lastX, lastY, lastZvar color = ['red', 'blue', 'green', 'yellow', 'gray']var speed = 25var enabled = truex = y = z = lastX = lastY = last...
分类:其他好文   时间:2014-10-29 19:11:16    阅读次数:232
LeetCode Sort Colors
LeetCode - Sort ColorsGiven 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...
分类:其他好文   时间:2014-10-29 15:00:37    阅读次数:162
js中this和方法解耦
window.color="red";var o={color:"blue"};function sayColor(){alert(this.color);}sayColor();sayColor.call(this,1,2);sayColor.call(window,1,2);sayColor.c...
分类:Web程序   时间:2014-10-29 08:02:04    阅读次数:183
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!