摘要: 透明度百分比对应 RGB 值 100% — FF 95% — F2 90% — E6 85% — D9 80% — CC 75% — BF 70% — B3 65% — A6 60% — 99 55% — 8C 50% — 80 45% — 73 40% — 66 35% — 59 30% — 4D 阅读全文
posted @ 2022-08-28 14:39 爱国学的程序员 阅读(15) 评论(0) 推荐(0) 编辑
摘要: 1. 首先去NPM官网注册账号https://www.npmjs.com 2 确认当前仓库是否为官方仓库: -使用命令行可查看npm config get registry 即(https://registry.npmjs.org/) -如果是镜像地址使用命令行切换成官方仓库 npm config 阅读全文
posted @ 2021-09-13 10:20 爱国学的程序员 阅读(1027) 评论(0) 推荐(0) 编辑
摘要: 1、安装nodejs 2、安装bower工具 cmd:npm bower install 3、生成package.json cmd:npm init 4、生成bower.json cmd:bower init 阅读全文
posted @ 2016-09-26 16:01 爱国学的程序员 阅读(1268) 评论(0) 推荐(0) 编辑
摘要: angular-ui-tree的github项目地址:https://github.com/angular-ui-tree/angular-ui-tree DEMO目录结构如下:bootstrap.css为3.0以上app.css内容.btn { margin-right: 8px;}.angula... 阅读全文
posted @ 2015-12-18 16:03 爱国学的程序员 阅读(4857) 评论(1) 推荐(1) 编辑
摘要: Insert title here 阅读全文
posted @ 2015-12-17 11:36 爱国学的程序员 阅读(333) 评论(0) 推荐(0) 编辑
摘要: function getClientSize() { var c = window, b = document, a = b.documentElement; if (c.innerHeight) { return { width: c.innerWidth, height: c.innerHeig... 阅读全文
posted @ 2015-09-18 14:19 爱国学的程序员 阅读(474) 评论(0) 推荐(0) 编辑
摘要: Css/* 页脚 */.footSty{bottom: 0pt; margin: 0pt; position: fixed; width: 100%; z-index: 10 ! important;}.footSty div{text-align: center; background-color... 阅读全文
posted @ 2015-09-16 13:23 爱国学的程序员 阅读(1244) 评论(0) 推荐(0) 编辑
摘要: 引入CSS的方法有两种,一种是@import,一种是link 一、@import url('地址');二、现在绝大部分的网站都采用后一种link方式,原因在于@import先加载HTML,后加载CSSlink先加载CSS,后加载HTML。 阅读全文
posted @ 2015-05-22 14:06 爱国学的程序员 阅读(403) 评论(0) 推荐(0) 编辑