码迷,mamicode.com
首页 >  
搜索关键字:blue jeans    ( 1840个结果
jquer 获取json数据,并且用 highcharts 实现展现
json数据格式如下:{ "value":[ 23, 4, 24, 95, 27, 35, 93, 63, 75, 17, 13, 93, 54, 71, 61, 14, 13, 14, 29 ] }需要highcharts的dark-blue.js文件html文件格式如下:<!doctypehtml> <htmllang="en"> <head> <scripttype="text/javas..
分类:Web程序   时间:2014-11-25 02:03:22    阅读次数:286
ios 绘图的时候line宽度最小为2的解决方案
CGContextMoveToPoint(ctx, 4.5, (KCaladerViewOfHeadHight-1)+0.5); [[UIColor colorWithRed:61/255.0 green:122/255.0 blue:215/255.0 alpha:1] setStroke...
分类:移动开发   时间:2014-11-24 17:08:33    阅读次数:139
Java枚举enum使用及相关的操作
在Java1.5之后,引入了枚举新的特性,在之前,java有两种定义新类型的方式:类和接口。但是在特殊情况下,满足不了我们的需求,比如我们定义一个Color类,它只能有Red,Blue,Green三种值,对于其他的值来说都是无效的。为引入枚举之前,我们一般使用其私有化其构造方法,然后在其内部实例化三个常量,然后再取值。这样不仅繁琐,而且带来了更多不安全的问题。 package andy.enum...
分类:编程语言   时间:2014-11-24 13:37:27    阅读次数:177
scala编程第17章学习笔记(1)——集合类型
列表列表的初始化及对其首尾的访问:scala> val colors = List("red", "blue", "green")colors: List[String] = List(red, blue, green)scala> colors.headres15: String = redsca...
分类:其他好文   时间:2014-11-22 22:59:20    阅读次数:270
我的oh my zsh主题
local ret_status="%(?:%{$fg_bold[green]%}? :%{$fg_bold[red]%}? %s)"PROMPT='%(!.%{$fg_bold[blue]%}.%{$fg_bold[green]%}%n@)%m %{$fg_bold[cyan]%}%(!.%1~....
分类:其他好文   时间:2014-11-22 17:14:34    阅读次数:314
js闭包
闭包例子var color = "blue"; function changeColor(){ var anotherColor = "red"; function swapColors(){ var tempColor = anotherColor; anotherColor = colo...
分类:Web程序   时间:2014-11-22 11:52:23    阅读次数:161
关于增加样式addClass不起作用
存在样式:.selected{ background:Blue}如果我们存在以下代码:$(function(){$("tr:odd").css("background","Red"); $("tr:odd").click(function(){ if(...){ $(this).addCl...
分类:其他好文   时间:2014-11-21 12:29:21    阅读次数:429
Effective JavaScript Item 55 接受配置对象作为函数参数
接受配置对象作为函数参数 虽然保持函数接受的参数的顺序很重要,但是当函数能够接受的参数达到一定数量时,也会让用户很头疼: var alert = new Alert(100, 75, 300, 200, "Error", message, "blue", "white", "black", "error", true); 随着函数的不断重构和进化,它能...
分类:编程语言   时间:2014-11-21 10:43:25    阅读次数:206
[ES6] 08. Destructuring Assignment -- 1
Here is the way you get value from an object:var obj = { color: "blue"}console.log(obj.color); //blueDestructuring Assignment:ObjectDestructuring ...
分类:其他好文   时间:2014-11-21 01:31:07    阅读次数:154
Reverse Words in a String
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.Cl...
分类:其他好文   时间:2014-11-20 11:53:36    阅读次数:206
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!