# GitHub Corner
# 基本使用
通过 repo
指定 github 仓库地址,格式是 <用户名>/<仓库名>
,例如:wencaizhang/ActionVue
。
# 背景色
通过 bgColor
指定背景颜色
# 图标颜色
通过 color
指定图标颜色
# 位置
默认情况,github corner 是绝对定位,靠右上角定位。你也可以通过 position
指定靠左上角定位。
# 固定定位
默认是绝对定位 position: absolute;
,如果你需要使其固定定位,可以在外边包裹一层 div
,将 div
设置为 position: fixed; top: 0; right: 0;
即可。
# API
属性 | 说明 | 类型 | 默认值 |
---|---|---|---|
repo | 仓库地址,<username>/<repo> ,例如 wencaizhang/ActionVue | String | - |
bgColor | 背景色 | String | #151513 |
color | github 图标填充颜色 | String | #fff |
blank | 是否在新窗口打开链接 | Boolean | true |
position | 显示位置,左上或右上,left right | String | right |