码迷,mamicode.com
首页 >  
搜索关键字:blue    ( 1833个结果
HTML常用属性
blue:蓝色 red:红色 yellow:黄色 green:绿色 white:白色 gray:灰色 /*去掉下划线*/ text-decoration: none; /*添加下划线*/ text-decoration: underline; /*字斜体*/ font-style:italic; / ...
分类:Web程序   时间:2016-10-28 13:30:40    阅读次数:306
php中的常用数组函数(七) 数组合并 array_merge()和array_merge_recursive()
两个函数作用都是合并数组。参数可以是1到n个数组。(呃,不明白参数是1个数组的时候啥用的。谁知道告诉我。) 输出结果: 第3行: Array( [0] => 1 [1] => 2 [2] => 3 [3] => 4 [color] => blue //这一行有区别注意哦 [4] => a [5] = ...
分类:编程语言   时间:2016-10-27 18:59:14    阅读次数:145
开始学习css
今天开始学习css;应用一本《HTML5与CSS3网页设计基础》 先学习css样式规则声明。 Body{ color:blue} 对应:选择符:{声明属性:声明值}; Background-color:属性 Body{ Background-color:yellow} 配置元素背景颜色css属性是B ...
分类:Web程序   时间:2016-10-25 02:07:29    阅读次数:263
blue and red ball
Problem 1 双色球(ball.cpp/c/pas) 【题目描述】 机房来了新一届的学弟学妹,邪恶的chenzeyu97发现一位学弟与他同名,于是他当起了善良的学长233 “来来来,学弟,我考你道水题检验一下你的水平……” 一个栈内初始有n个红色和蓝色的小球,请你按照以下规则进行操作 以上3步 ...
分类:其他好文   时间:2016-10-23 20:25:43    阅读次数:198
javascript实现继承的几种方式
原型链方式实现继承 [javascript] view plain copy print? function SuperType(){ this.property = true; this.colors = ['red','blue','green']; } SuperType.prototype. ...
分类:编程语言   时间:2016-10-22 11:45:42    阅读次数:319
Web前端入门学习(3)——CSS选择器
CSS选择器id选择器<!DOCTYPEHTML> <html> <head> <metahttp-equiv="Content-Type"content="text/html;charset=utf-8"> <title>无标题文档</title> <style> #box{width:200px;height:200px;border:2pxsolid#f3f3f3;background:blue;m..
分类:Web程序   时间:2016-10-20 15:49:30    阅读次数:212
第七天的学习
<!DOCTYPEhtml><htmllang="zh-cmn-Hans"><head> <metacharset="utf-8"/> <title></title> <style> .a{ width:1000px; height:500px; background-color:blue; background-p_w_picpath:linear-gradient(blue,white); /*bac..
分类:其他好文   时间:2016-10-20 00:50:19    阅读次数:106
JQuery学习之操作CSS
样式表: .important{ font-weight:bold; font-size:xx-large; } .blue{ color:blue; } 1.addClass():向被选元素添加一个或多个类 $("button").click(function{ $("h1,h2,p").addC ...
分类:Web程序   时间:2016-10-18 02:28:23    阅读次数:263
UIColor与PatternImage
UIColor有一个方法叫做+ (UIColor *)colorWithPatternImage:(UIImage *)image;。返回的是一个UIColor,但没有明确的RGB值,所以叫做pattern color。 [color getRed:&a green:&g blue:&b alpha... ...
分类:其他好文   时间:2016-10-17 07:03:07    阅读次数:148
jQuery入门第二天
3种选择器:元素选择器:$("button")、class选择器:$(".btn")、id选择器:$("#target1")。 jQuery有一个叫做.css()的方法能让你改变元素的CSS样式。 我们是这样来把颜色改变成蓝色的: $("#target1").css("color", "blue") ...
分类:Web程序   时间:2016-10-16 19:30:30    阅读次数:131
1833条   上一页 1 ... 75 76 77 78 79 ... 184 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!