Tekkaman

导航

 
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 42 下一页

2017年6月1日

摘要: 【Bootstrap 模态框】 通过 data 属性: 1、在控制器元素(比如按钮或者链接)上设置属性 data-toggle="modal", 2、同时设置 data-target="#identifier" 或 href="#identifier" 来指定要切换的特定的模态框 通过 JavaSc 阅读全文
posted @ 2017-06-01 09:30 Tekkaman 阅读(256) 评论(0) 推荐(0) 编辑
 

2017年5月31日

摘要: 【Bootstrap 下拉菜单】 实现下拉菜单有几个要点: 1、根部div必须 class="dropdown" 2、Button必须 data-toggle="dropdown" 3、ul必须 class="dropdown-menu" 可以通过js来调用: 参考: 1、http://www.ru 阅读全文
posted @ 2017-05-31 23:04 Tekkaman 阅读(191) 评论(0) 推荐(0) 编辑
 
摘要: 【Bootstrap的aria-label和aria-labelledby】 用于盲人阅读的属性,基本也没什么用。 参考:http://blog.csdn.net/liuyan19891230/article/details/50452835 阅读全文
posted @ 2017-05-31 20:37 Tekkaman 阅读(384) 评论(0) 推荐(0) 编辑
 
摘要: 【Bootstrap 辅助类】 1、背景色 2、 3、向左右浮动 参考:http://www.runoob.com/bootstrap/bootstrap-helper-classes.html 阅读全文
posted @ 2017-05-31 16:52 Tekkaman 阅读(205) 评论(0) 推荐(0) 编辑
 
摘要: 【clearfix原理】 链接:http://blog.sina.com.cn/s/blog_60b35e830101c1r8.html 阅读全文
posted @ 2017-05-31 16:37 Tekkaman 阅读(221) 评论(0) 推荐(0) 编辑
 
摘要: 【Bootstrap 表单】 1、垂直(默认表单) 1、form元素添加role="form" 2、div添加class ="form-group" 3、input添加class="form-control" 2、内联表单。form元素添加class="form-inline"即可。 3、水平表单。 阅读全文
posted @ 2017-05-31 14:59 Tekkaman 阅读(218) 评论(0) 推荐(0) 编辑
 
摘要: 【Bootstrap 表格】 1、 2、 3、 4、 5、 <table class="table"> <caption>上下文表格布局</caption> <thead> <tr> <th>产品</th> <th>付款日期</th> <th>状态</th></tr> </thead> <tbody 阅读全文
posted @ 2017-05-31 13:42 Tekkaman 阅读(246) 评论(0) 推荐(0) 编辑
 
摘要: 【Bootstrap 网格系统】 1、网格系统通过一系列包含内容的行和列来创建页面布局。下面列出了 Bootstrap 网格系统是如何工作的: row必须放置在 .container class 内,以便获得适当的对齐(alignment)和内边距(padding)。 使用row来创建col的水平组 阅读全文
posted @ 2017-05-31 13:10 Tekkaman 阅读(188) 评论(0) 推荐(0) 编辑
 
摘要: 【媒体类型 & 媒体查询】 @media 规则允许在相同样式表为不同媒体设置不同的样式。 在下面的例子告诉我们浏览器屏幕上显示一个14像素的Verdana字体样式。但是如果页面打印,将是10个像素的Times字体。请注意,font-weight在屏幕上和纸上设置为粗体: 如果文档宽度小于 300 像 阅读全文
posted @ 2017-05-31 12:24 Tekkaman 阅读(618) 评论(0) 推荐(0) 编辑
 
摘要: 【Bootstrap 代码】 Bootstrap 允许您以两种方式显示代码: 第一种是 <code> 标签。如果您想要内联显示代码,那么您应该使用 <code> 标签。 第二种是 <pre> 标签。如果代码需要被显示为一个独立的块元素或者代码有多行,那么您应该使用 <pre> 标签。 1、展示HTM 阅读全文
posted @ 2017-05-31 01:35 Tekkaman 阅读(268) 评论(0) 推荐(0) 编辑
 
摘要: 【Bootstrap排版】 1、为了给段落添加强调文本,则可以添加 class="lead",这将得到更大更粗、行高更高的文本。 2、文本对齐 3、文本样式 4、缩写 5、blockquote 6、大小写文本 参考:http://www.runoob.com/bootstrap/bootstrap- 阅读全文
posted @ 2017-05-31 01:15 Tekkaman 阅读(427) 评论(0) 推荐(0) 编辑
 
摘要: 【Bootstrap按钮】 1、 2、 3、 4、 5、 6、 7、 8、 9、 参考:http://www.runoob.com/bootstrap/bootstrap-buttons.html 阅读全文
posted @ 2017-05-31 00:59 Tekkaman 阅读(162) 评论(0) 推荐(0) 编辑
 

2017年5月30日

摘要: 【DOCTYPE】 HTML5文档类型 document.compatMode: BackCompat:怪异模式,浏览器使用自己的怪异模式解析渲染页面。 CSS1Compat:标准模式,浏览器使用W3C的标准解析渲染页面。 这个属性会被浏览器识别并使用,但是如果你的页面没有DOCTYPE的声明,那么 阅读全文
posted @ 2017-05-30 23:25 Tekkaman 阅读(227) 评论(0) 推荐(0) 编辑
 

2017年5月24日

摘要: 【Nodejs this详解】 Nodejs中, 文件层this,指向的是module.export。 函数层this,指向的是global对象。 参考:http://www.jb51.net/article/81556.htm 阅读全文
posted @ 2017-05-24 19:17 Tekkaman 阅读(573) 评论(0) 推荐(0) 编辑
 

2017年5月17日

摘要: 【为什么要用MarkDown?】 大部分作家用 Word 或 Pages 写作,过去的文档也大都以 .doc, .docx 格式或是 Pages 格式储存。还有人为了保证文稿发给谁都能正常打开,会用 .txt 格式。 .doc 或 Pages 格式有如下问题: .txt 格式的问题在于没有样式:收到 阅读全文
posted @ 2017-05-17 23:43 Tekkaman 阅读(381) 评论(0) 推荐(0) 编辑
 

2017年5月15日

摘要: 【Android Studio: Application Installation Failed】 参考:http://stackoverflow.com/questions/32718044/android-studio-application-installation-failed 阅读全文
posted @ 2017-05-15 20:18 Tekkaman 阅读(220) 评论(0) 推荐(0) 编辑
 

2017年5月14日

摘要: 【git查看某个文件修改历史】 1、使用git命令 git whatchanged charge.lua 显示某个文件的每个版本提交信息:提交日期,提交人员,版本号,提交备注(没有修改细节) git show 7aee80cd2afe3202143f379ec671917bc86f9771 显示某个 阅读全文
posted @ 2017-05-14 20:22 Tekkaman 阅读(1472) 评论(0) 推荐(0) 编辑
 

2017年5月12日

摘要: 【有些事现在不做,一辈子都不会做了】 年轻的时候,总是想着,等到怎样怎样,我就怎样怎样。 等到忙完这一阵,我就健身减肥; 等到忙完这一阵,我就拿起kindle充电; 等到忙完这一阵,我就研究自己的感兴趣的技术。 七年前是这样,七后年还是这样。 1、活得简单,才能活得自由。 Live simply, 阅读全文
posted @ 2017-05-12 00:28 Tekkaman 阅读(267) 评论(0) 推荐(0) 编辑
 

2017年5月7日

摘要: 【onMouseOver&onMouseOut vs onMouseEnter&onMouseLeave】 1、onmouseleave、onmouseenter,鼠标进入到指定元素区域内触发事件,不支持冒泡,不包含子元素的区域。 2、onmouseout、onmouseover、鼠标进入指定元素触 阅读全文
posted @ 2017-05-07 03:17 Tekkaman 阅读(550) 评论(0) 推荐(0) 编辑
 

2017年5月4日

摘要: 【versionCode & versionName】 Android的版本可以在androidmainfest.xml中定义,主要有android:versionCode和android:versionName android:versionCode:主要是用于版本升级所用,是INT类型的,第一个 阅读全文
posted @ 2017-05-04 22:41 Tekkaman 阅读(579) 评论(0) 推荐(0) 编辑
 

2017年5月1日

摘要: 【display:none vs visibility:hidden】 设置元素的display为none是最常用的隐藏元素的方法。 将元素设置为display:none后,元素在页面上将彻底消失,元素本来占有的空间就会被其他元素占有,也就是说它会导致浏览器的重排和重绘。 设置元素的visibili 阅读全文
posted @ 2017-05-01 15:59 Tekkaman 阅读(260) 评论(0) 推荐(0) 编辑
 

2017年4月30日

摘要: 【polyfill】 参考:https://zhidao.baidu.com/question/1767408997770762580.html 阅读全文
posted @ 2017-04-30 11:26 Tekkaman 阅读(588) 评论(0) 推荐(0) 编辑
 

2017年4月29日

摘要: 【combineReducers】 Redux provides a utility called combineReducers(). The following two diagram has the same effect. You could also give them different 阅读全文
posted @ 2017-04-29 23:24 Tekkaman 阅读(179) 评论(0) 推荐(0) 编辑
 
摘要: 【React Context】 1、Why Not To Use Context The vast majority of applications do not need to use context. 大多数应用不需要使用context。 If you want your application 阅读全文
posted @ 2017-04-29 21:03 Tekkaman 阅读(746) 评论(0) 推荐(0) 编辑
 
摘要: 【propTypes】 React.PropTypes is deprecated as of React v15.5. Please use the prop-types library instead. You can define default values for your props b 阅读全文
posted @ 2017-04-29 17:47 Tekkaman 阅读(193) 评论(0) 推荐(0) 编辑
 
摘要: 【Redux】 1、Redux 的设计思想 (1)Web 应用是一个状态机,视图与状态是一一对应的。 (2)所有的状态,保存在一个对象里面。 2、Store Store 就是保存数据的地方,你可以把它看成一个容器。整个应用只能有一个 Store。 Redux 提供createStore这个函数,用来 阅读全文
posted @ 2017-04-29 15:41 Tekkaman 阅读(235) 评论(0) 推荐(0) 编辑
 
摘要: 【ES2015 import】 The import statement is used to import functions, objects or primitives that have been exported from an external module, another scrip 阅读全文
posted @ 2017-04-29 13:15 Tekkaman 阅读(1323) 评论(0) 推荐(0) 编辑
 

2017年4月28日

摘要: 【Array.prototype.reduce】 Array.reduce([callback, initialValue]) 参数 参考:https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Global_Objects 阅读全文
posted @ 2017-04-28 23:49 Tekkaman 阅读(213) 评论(0) 推荐(0) 编辑
 
摘要: 【Flux architecture】 Flux is a pattern for managing data flow in your application. The most important concept is that data flows in one direction. As w 阅读全文
posted @ 2017-04-28 23:16 Tekkaman 阅读(288) 评论(0) 推荐(0) 编辑
 

2017年4月25日

摘要: 【React DevTools】 在应用商店搜索安装。F12可打开。如果是react应用,在最右排会显示react标签. 参考:https://github.com/facebook/react-devtools 阅读全文
posted @ 2017-04-25 18:37 Tekkaman 阅读(2662) 评论(0) 推荐(0) 编辑
 
摘要: 【CSS Media Query】 CSS Media Queries are a feature in CSS3 which allows you to specify when certain CSS rules should be applied. This allows you to app 阅读全文
posted @ 2017-04-25 17:26 Tekkaman 阅读(186) 评论(0) 推荐(0) 编辑
 
摘要: 【ChromDevTools】 1、如何打开DevTools。 在Chrome菜单中选择 更多工具 > 开发者工具 在页面元素上右键点击,选择 “检查” 使用 快捷键 F12 2、切换 Device Mode 按钮可以打开或关闭 Device Mode。 3、使用视口控件 利用视口控件,您可以针对各 阅读全文
posted @ 2017-04-25 17:01 Tekkaman 阅读(197) 评论(0) 推荐(0) 编辑
 

2017年4月23日

摘要: 【css定位】 1、div、h1 或 p 元素常常被称为块级元素。这意味着这些元素显示为一块内容,即“块框”。与之相反,span 和 strong 等元素称为“行内元素”,这是因为它们的内容显示在行中,即“行内框”。 2、在一种情况下,即使没有进行显式定义,也会创建块级元素。这种情况发生在把一些文本 阅读全文
posted @ 2017-04-23 21:04 Tekkaman 阅读(179) 评论(0) 推荐(0) 编辑
 
摘要: 【css display属性】 通过将 display 属性设置为 block,可以让行内元素(比如 <a> 元素)表现得像块级元素一样。还可以通过把 display 设置为 none,让生成的元素根本没有框。这样的话,该框及其所有内容就不再显示,不占用文档中的空间。 参考:http://www.w 阅读全文
posted @ 2017-04-23 20:48 Tekkaman 阅读(243) 评论(0) 推荐(0) 编辑
 
摘要: 【react+webpack+babel环境搭建】 1、react官方文档推荐使用 babel-preset-react、babel-preset-es2015 两个perset。 Babel官方文档推荐使用 babel-preset-env。而不再推荐直接使用babel-preset-es2015 阅读全文
posted @ 2017-04-23 02:39 Tekkaman 阅读(235) 评论(0) 推荐(0) 编辑
 
摘要: 【response.sendfile() fails with Error: Forbidden】 参考:https://github.com/expressjs/express/issues/1465 阅读全文
posted @ 2017-04-23 00:36 Tekkaman 阅读(305) 评论(0) 推荐(0) 编辑
 

2017年4月22日

摘要: 【express返回html文件】 app.engine(ext, callback) 方法即可创建一个你自己的模板引擎。其中,ext 指的是文件扩展名、callback 是模板引擎的主函数,接受文件路径、参数对象和回调函数作为其参数。 通常是使用jade或ejs来返回一个页面。 若想直接返回一个原 阅读全文
posted @ 2017-04-22 18:57 Tekkaman 阅读(15544) 评论(2) 推荐(0) 编辑
 
摘要: 【NPM安装依赖速度慢问题】 npm config set registry http://registry.npm.taobao.org 参考:http://blog.csdn.net/rongbo_j/article/details/52106580 阅读全文
posted @ 2017-04-22 17:46 Tekkaman 阅读(870) 评论(0) 推荐(0) 编辑
 

2017年4月21日

摘要: 【FLAG_ACTIVITY_CLEAR_TASK | FLAG_ACTIVITY_NEW_TASK】 1、FLAG_ACTIVITY_NEW_TASK 2、FLAG_ACTIVITY_CLEAR_TASK this flag will cause any existing task that wo 阅读全文
posted @ 2017-04-21 11:21 Tekkaman 阅读(2240) 评论(0) 推荐(0) 编辑
 

2017年4月18日

摘要: 【JSON.parse()和JSON.stringify()】 parse用于从一个字符串中解析出json对象,如 var str = '{"name":"huangxiaojian","age":"23"}' 注意:单引号写在{}外,每个属性名都必须用双引号,否则会抛出异常。 stringify( 阅读全文
posted @ 2017-04-18 19:25 Tekkaman 阅读(235) 评论(0) 推荐(0) 编辑
 
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 42 下一页