04 2017 档案

摘要:呂祖十戒十行垂訓——十行 呂祖曰。凡人學問。由粗可以致精。無過然後有功。去過之方。詳于十戒。求功之道。定于十行。人之一生。非動則靜。非處衆則獨處。與人相對。一己自處。無時不可檢束。無地不可用功。過去而功積。不求入道。而道無不入矣。敬聽吾言。相勉于成。慎之毋忽。一曰主敬。人之心最放縱。無所主。則出入無 阅读全文
posted @ 2017-04-24 00:58 silvercell 阅读(6817) 评论(0) 推荐(0) 编辑
摘要:判断 阅读全文
posted @ 2017-04-12 11:44 silvercell 阅读(810) 评论(0) 推荐(0) 编辑
摘要:循环代码 阅读全文
posted @ 2017-04-12 11:44 silvercell 阅读(946) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2017-04-11 12:48 silvercell 阅读(3845) 评论(3) 推荐(0) 编辑
摘要:说起循环,其实对于用法,for循环和while循环都是很基础的,你会以为这没什么讲的。说破了不就那么回事,对吧。但是有时候,为什么计算机C语言考试或者别人的代码中,一些代码也是使用普通的循环,但是你有为什么不能够轻易看懂呢,有时候甚至犯晕看不懂,知道为什么吗?因为你学会了使用,学会了通常的用法,然后 阅读全文
posted @ 2017-04-11 12:26 silvercell 阅读(1375) 评论(0) 推荐(0) 编辑
摘要:#include <stdio.h> int main() { printf("你好!\n"); return 0; } #include <stdio.h> int main() { printf("23+43=%d\n", 23+43); return 0; } #include <stdio. 阅读全文
posted @ 2017-04-10 22:45 silvercell 阅读(1148) 评论(0) 推荐(0) 编辑
摘要:为 HTML5 建立的一些规则:新特性应该基于 HTML、CSS、DOM 以及 JavaScript。减少对外部插件的需求(比如 Flash)更优秀的错误处理更多取代脚本的标记HTML5 应该独立于设备开发进程应对公众透明 新特性HTML5 中的一些有趣的新特性:用于绘画的 canvas 元素用于媒 阅读全文
posted @ 2017-04-09 22:38 silvercell 阅读(2395) 评论(0) 推荐(0) 编辑
摘要:html5 web worker 在后台异步执行js 文件 通过 onmessage 监听返回来的结果 Html5 webworkers 浅谈webworker 访问localhost / 用服务器如果用引入文件会报错 阅读全文
posted @ 2017-04-09 19:54 silvercell 阅读(1871) 评论(0) 推荐(0) 编辑
摘要:在服务器配置支持 Application Cache 服务器nginx 配置 html5使用application cache 阅读全文
posted @ 2017-04-09 19:00 silvercell 阅读(1506) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2017-04-09 12:56 silvercell 阅读(1261) 评论(1) 推荐(0) 编辑
摘要:taiji 阅读全文
posted @ 2017-04-09 10:18 silvercell 阅读(541) 评论(0) 推荐(0) 编辑
摘要:|--相对定位参考物是相对于这个div 本身 |--绝对定位是基于某个参考物的位置进行的绝对定位: 层层上找父元素 |--该元素如果父元素没有找到顶 直接相对于 body |--该元素有父元素 父元素且是相对自身定位 position:relative; 有这个属性 则定位是相对父元素的绝对定位 | 阅读全文
posted @ 2017-04-09 00:21 silvercell 阅读(894) 评论(0) 推荐(0) 编辑
摘要:html和后面的php如何结合起来? 注册的用户信息 -> 如何发送给服务器 网站注册,要用到表单,Html 和 PHP,java 等的数据交互,就要靠表单联系起来. 1.表单写法 声明一个表单: action:URL 提交到哪去 method:get/post,提交方式 2.用户名:文本框 用户名: 3.密码:密码框 密码: 4.性别:单选框 radio value -> 往后台传的值 ... 阅读全文
posted @ 2017-04-08 23:56 silvercell 阅读(2190) 评论(1) 推荐(0) 编辑
摘要:|-- 引入fontawesome 字体 <link rel="stylesheet" href="./css/font-awesome.min.css"> 首先引入CSS文件:<link href="http://maxcdn.bootstrapcdn.com/font-awesome/4.2.0 阅读全文
posted @ 2017-04-08 19:38 silvercell 阅读(1815) 评论(0) 推荐(0) 编辑
摘要:字体: 字体样式: font-style font-weight font-size line-height font-family font-family: '静蕾体','微软雅黑','文泉驿正黑体','黑体',sans-serif; |-.-.- sans-serif 无衬线 // serif有 阅读全文
posted @ 2017-04-08 15:56 silvercell 阅读(1405) 评论(1) 推荐(0) 编辑
摘要:属性规定元素应该生成框的类型: display: block; display:inline; display:none; display:inline-block; display:item-list; 阅读全文
posted @ 2017-04-08 15:14 silvercell 阅读(703) 评论(0) 推荐(0) 编辑
摘要:#div1 { width:120px;height:120px; background:pink; margin-left:80px; float:left; margin:30px; padding:50px; box-sizing:border-box; } box-sizing:border 阅读全文
posted @ 2017-04-08 14:04 silvercell 阅读(2289) 评论(0) 推荐(0) 编辑
摘要:background-clip 与 background-origin 两个属性表示的都是元素背景与元素边框、补白(padding)和内容区域之间的某种关系。虽然两者看上去实现的效果差不多,但是他们两个的原理是不同的。 background-origin定义的是背景位置(background-pos 阅读全文
posted @ 2017-04-08 13:43 silvercell 阅读(3931) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2017-04-05 18:54 silvercell 阅读(264) 评论(0) 推荐(0) 编辑
摘要:config 阅读全文
posted @ 2017-04-01 08:16 silvercell 阅读(288) 评论(1) 推荐(0) 编辑