摘要: 效果图如下 box shadow的语法 代码展示 .footer { color: 777; padding: 10px 15px; height: 20px; text align: center; border top: 1px solid e6e6e6; } .footer:before { 阅读全文
posted @ 2018-05-16 17:16 羊示子木 阅读(468) 评论(0) 推荐(0) 编辑
摘要: 业务主要功能 获取所有的数据库列表 点击某一个数据库列表的时候,右侧分页展示数据 点击右侧某一条数据的时候,现实数据详情 以下是之前的页面,存在以下问题: 前段开发没有工程化(webpack) 主要功能耦合,列表,详情,(检索,重构的是为了加功能方便) 左侧的数据库链接是直接跳页的,分页的链接是跳页 阅读全文
posted @ 2018-05-10 00:08 羊示子木 阅读(292) 评论(0) 推荐(0) 编辑
摘要: markdown 很好的一门标记语言 语法简单,记住下面的就入门了,一分钟不到 使用范围广,各式各样的编辑器支持markdown,评论也是支持的, 一般文档后缀为 markdown 基本用法记住就入门了 你们都懂的啦!不会有问题的啦!要自信! 阅读全文
posted @ 2018-05-07 17:04 羊示子木 阅读(130) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-04-22 22:51 羊示子木 阅读(523) 评论(0) 推荐(0) 编辑
摘要: 在搜索框里添加放大镜的图标,且显示提示信息 阅读全文
posted @ 2017-04-28 00:03 羊示子木 阅读(13398) 评论(0) 推荐(0) 编辑
摘要: css3实现checkbox变按钮 阅读全文
posted @ 2017-04-27 23:28 羊示子木 阅读(2605) 评论(2) 推荐(1) 编辑
摘要: 函数定义 函数语句定义 表达式定义 //函数表达式可以包含名称,这在递归时很有用 var f = function fact(x){ if(x<=1) {return 1; }else { return x*faxt(x-1); } } 以表达式方式定义的函数,函数的名称是可选的。如果函数定义表达式 阅读全文
posted @ 2017-04-16 00:28 羊示子木 阅读(428) 评论(0) 推荐(0) 编辑
摘要: 源链接:http://www.jianshu.com/p/b5c9e4c7b1e1 阅读全文
posted @ 2016-12-03 10:06 羊示子木 阅读(137) 评论(0) 推荐(0) 编辑
摘要: placeholder属性的样式设置效果图 代码 input:: webkit input placeholder { font style: italic; font weight: 300; color: e6e6e6; } input:: moz placeholder { font styl 阅读全文
posted @ 2018-05-16 17:23 羊示子木 阅读(289) 评论(0) 推荐(0) 编辑
摘要: 介绍一些 CSS3 新增的单位,平时可能用的比较少,但是由于单位的特性,在一些特殊场合会有妙用。 vw and vh 1vw 等于1/100的视口宽度 (Viewport Width) 1vh 等于1/100的视口高度 (Viewport Height) 综上,一个页面而言,它的视窗的高度就是 10 阅读全文
posted @ 2018-05-08 08:58 羊示子木 阅读(502) 评论(0) 推荐(0) 编辑
摘要: 今天要调试bug,先说明一下背景!有需求要修改keystonejs的后台管理页面,然后是看官方文档知道后台管理也是react+redux.然后为了加强后台管理页的功能(如汉化),然后将keystonejs的后台管理页面看完了。基本是可以看得动的。为了不破坏原来的功能且为了好用,就必须将原来 中的代码 阅读全文
posted @ 2018-05-07 17:19 羊示子木 阅读(549) 评论(0) 推荐(0) 编辑
摘要: https://www.npmjs.com/package/cross env 跨平台运行脚本 The problem Most Windows command prompts will choke when you set environment variables with NODE_ENV=p 阅读全文
posted @ 2018-04-10 15:38 羊示子木 阅读(897) 评论(0) 推荐(0) 编辑
摘要: 业精于勤荒于嬉,行成于思毁于随 阅读全文
posted @ 2018-04-09 22:52 羊示子木 阅读(397) 评论(0) 推荐(0) 编辑