上一页 1 ··· 3 4 5 6 7 8 9 10 11 12 下一页
2016年3月13日
摘要: http://www.cnblogs.com/shirui/p/5270969.html 准备材料:   1.java文件:        Helloworld.java        2.指定目录:建一个目录,来存放.class文件和.jar文件。 本文指定目录为 E:\myclass 。     阅读全文
posted @ 2016-03-13 09:52 jayruan 阅读(277) 评论(0) 推荐(0)
2016年3月12日
摘要: 阅读全文
posted @ 2016-03-12 11:41 jayruan 阅读(107) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2016-03-12 11:39 jayruan 阅读(125) 评论(0) 推荐(0)
摘要: .link:before{content: "/";margin:0 24px;color: grey;} .link:first-child:before{display:none;} 阅读全文
posted @ 2016-03-12 11:31 jayruan 阅读(128) 评论(0) 推荐(0)
2016年3月9日
摘要: .item { float: left; width: 21%; margin: 10px 2%; height: 0; padding-bottom: 21%; background: red url('http://www.51nyc.com/statics/images/info/logo.p 阅读全文
posted @ 2016-03-09 10:28 jayruan 阅读(147) 评论(0) 推荐(0)
2016年3月7日
摘要: 页头:header 如:#header{属性:属性值;}或.header{属性:属性值;},也许你需要了解class与id区别及用法登录条:loginBar 标志:logo 侧栏:sideBar广告:banner 导航:nav 子导航:subNav菜单:menu 子菜单:subMenu 搜索:sea 阅读全文
posted @ 2016-03-07 06:50 jayruan 阅读(323) 评论(0) 推荐(0)
摘要: <form name="example_form" action="http://google.com" method="POST"> <label for="req">Required field:</label><input name="req" id="req" /><br/> <label 阅读全文
posted @ 2016-03-07 06:29 jayruan 阅读(177) 评论(0) 推荐(0)
摘要: 中括号在正则中称为字符组(Character class),有的书翻译为字符类,还有的翻译成字符集。我觉得字符组更好点,毕竟class在计算机属于中代表面向对象里的“类”。顾名思义,字符组为一组字符,它表示在一个位置里可能出现的多种字符。注意这里强调只匹配一个位置哦。 简单字符组 范围字符组 组合字 阅读全文
posted @ 2016-03-07 05:55 jayruan 阅读(171) 评论(0) 推荐(0)
2016年3月6日
摘要: 随着pc、移动设备的屏幕规格增多、增大,当前,依据使用Media Query在不同的条件下使用不同的样式,使页面达到不同的渲染效果,可以有效的解决各种屏幕分辨率下的用户体验及移动web开发多种需求。 Media Queries(媒体查询):作用就是允许添加表达式用以确定媒体的环境情况,以此来应用不同 阅读全文
posted @ 2016-03-06 21:11 jayruan 阅读(292) 评论(0) 推荐(0)
摘要: http://www.feeldesignstudio.com/2013/09/native-javascript-object-properties-and-methods-array/ length 设置或返回 数组中元素的数目。 注意:设置 length 属性可改变数组的大小。如果设置的值比其 阅读全文
posted @ 2016-03-06 11:00 jayruan 阅读(575) 评论(0) 推荐(0)
摘要: Angular 常用 ng-repeat,ng-repeat-start,ng-repeat-end,ng-value,ng-init <p ng-repeat="itemSec in itemsub.orderOptionItems" ng-if="$index % 2 ==0" > <span 阅读全文
posted @ 2016-03-06 10:22 jayruan 阅读(245) 评论(0) 推荐(0)
2016年3月5日
摘要: 1,元素百比分是相对父元素,所有元素默认父元素是body. absolute,fixed[只有一个父元素,浏览器窗口]除外[浏览器窗口,为父元素].css3:vh,vw也永远相对,浏览器窗口.height: 10% == 10vh;absolute:height:100%和height:inheri 阅读全文
posted @ 2016-03-05 11:11 jayruan 阅读(1276) 评论(0) 推荐(0)
2016年3月2日
摘要: <span id="span{{$index}}" ng-click="goTab({{$index}})" ng-class="{tabFont:selectIndex==$index?true:false}" style="padding:0 10px;" ng-repeat="tab in [ 阅读全文
posted @ 2016-03-02 09:43 jayruan 阅读(136) 评论(0) 推荐(0)
2016年2月29日
摘要: node-jsonfilenpm install json-diffdeepmergesearchjs 阅读全文
posted @ 2016-02-29 11:12 jayruan 阅读(118) 评论(0) 推荐(0)
摘要: 过渡放在原:transiton:2s; 块无素:block,inline inline-block1,占一行,有宽,有高内元素:2,无宽高,内容撑开宽高。不支持上下margin.代码换行补解析。3, 一行,有宽,有高。不设宽度,要内容撑开。float:浮动元素.clearfix{*zoom:1;}. 阅读全文
posted @ 2016-02-29 06:33 jayruan 阅读(218) 评论(0) 推荐(0)
2016年2月28日
摘要: git checkout -b iss53 == git branch iss53 && git checkout iss53 git merge hotfixgit branch -d hotfix 查看所有分支:git branch -a 切换分支 : git checkout master / 阅读全文
posted @ 2016-02-28 08:25 jayruan 阅读(149) 评论(0) 推荐(0)
摘要: 1,mongoDB 取模运算:db.person.find({index:{$mod:[5,1]}})db.person.find({index:{$not:{$mod:[5,1]}}})2,name存在db.person.find({name:{$exists:true}})3,index不存在 阅读全文
posted @ 2016-02-28 04:33 jayruan 阅读(209) 评论(0) 推荐(0)
摘要: 本篇只侧重框架提供的功能和能力的研究,请关注后续实际部署使用体验。 一、inoic是什么? inoic是一个可以使用Web技术以hybird方式开发移动app的前端开源框架。 二、inoic框架特点 1. 利用web技术开发移动app。 ionic提供了一套HTML、CSS、JS的类库。我们可以使用 阅读全文
posted @ 2016-02-28 04:21 jayruan 阅读(556) 评论(0) 推荐(0)
2016年2月27日
摘要: length:唯一的属性,只读,用来获取storage内的键值对数量。 key:根据index获取storage的键名 getItem:根据key获取storage内的对应value setItem:为storage内添加键值对 removeItem:根据键名,删除键值对 clear:清空stora 阅读全文
posted @ 2016-02-27 11:39 jayruan 阅读(498) 评论(0) 推荐(0)
2016年2月26日
摘要: Node forever : 1,forever start --uid test start app.js 2,forever start --uid test start -a app.js 3,forever list 4,forever stop test node 开发流程1,expres 阅读全文
posted @ 2016-02-26 02:31 jayruan 阅读(551) 评论(0) 推荐(0)
上一页 1 ··· 3 4 5 6 7 8 9 10 11 12 下一页