会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
国学爱好者
博客园
首页
新随笔
联系
管理
订阅
2022年8月28日
android相关问题记录
摘要: 透明度百分比对应 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 爱国学的程序员
阅读(19)
评论(0)
推荐(0)
2021年9月13日
NPM包的发布及调试软链接
摘要: 1. 首先去NPM官网注册账号https://www.npmjs.com 2 确认当前仓库是否为官方仓库: -使用命令行可查看npm config get registry 即(https://registry.npmjs.org/) -如果是镜像地址使用命令行切换成官方仓库 npm config
阅读全文
posted @ 2021-09-13 10:20 爱国学的程序员
阅读(1130)
评论(0)
推荐(0)
2016年9月26日
生成package.json和bower.json
摘要: 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 爱国学的程序员
阅读(1275)
评论(0)
推荐(0)
2015年12月18日
angular-ui-tree
摘要: 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 爱国学的程序员
阅读(4909)
评论(1)
推荐(1)
2015年12月17日
jQueryUI 日期控件
摘要: Insert title here
阅读全文
posted @ 2015-12-17 11:36 爱国学的程序员
阅读(336)
评论(0)
推荐(0)
2015年9月18日
JS获取客户端的窗口大小
摘要: 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 爱国学的程序员
阅读(484)
评论(0)
推荐(0)
2015年9月16日
HTML设置固定页脚飘浮
摘要: 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 爱国学的程序员
阅读(1254)
评论(0)
推荐(0)
2015年5月22日
在CSS文件中引入其他CSS文件
摘要: 引入CSS的方法有两种,一种是@import,一种是link 一、@import url('地址');二、现在绝大部分的网站都采用后一种link方式,原因在于@import先加载HTML,后加载CSSlink先加载CSS,后加载HTML。
阅读全文
posted @ 2015-05-22 14:06 爱国学的程序员
阅读(419)
评论(0)
推荐(0)
公告