A circle progress bar made with CSS transitions, SVG, and some JS to control the percentage of completion.
Forked from Jon Christensen's Pen SVG Circle Progress.
A Pen by Captain Anonymous on CodePen.
A circle progress bar made with CSS transitions, SVG, and some JS to control the percentage of completion.
Forked from Jon Christensen's Pen SVG Circle Progress.
A Pen by Captain Anonymous on CodePen.
var trys = 0; | |
function pageInit(){ | |
var imgW = 695, | |
imgH = 1033, | |
wW = window.innerWidth, | |
wH = window.innerHeight, | |
_imgW, _imgH, | |
picbg = document.getElementById('picbg'), | |
px2rem = function(px){ | |
return px/(imgW/10); |
git config --global http.proxy socks5://127.0.0.1:1080 | |
git config --global https.proxy socks5://127.0.0.1:1080 | |
git config --global --unset http.proxy | |
git config --global --unset https.proxy | |
#只对github.com | |
git config --global http.https://git.521000.best.proxy socks5://127.0.0.1:1080 | |
git config --global --unset http.https://git.521000.best.proxy |
function FilterContactInfo($str){ // 过滤手机号码、QQ号、邮箱、地址 | |
$str = preg_replace('/(Q|Q|扣扣|企鹅|扣|联系|手机|电话|号)+[:[:punct:]一二三四五六七八九零壹贰叁肆伍陆柒捌玖\d1234567890①②③⑤]+/i', '', $str); | |
// 过滤网址、邮箱 | |
$str = preg_replace('/(网址|邮箱)*[\::]*[a-z]*\@?[a-z\-]+([\.\。][a-z]+)+/i', '', $str); | |
return $str; | |
} |
-V, --version output the version number
-d, --dist <dist> Base directory for all source files
-s, --src <src> Pattern used to select which files to publish (default: "**/*")
-b, --branch <branch> Name of the branch you are pushing to (default: "gh-pages")
-e, --dest <dest> Target directory within the destination branch (relative to the root) (default: ".")
-a, --add Only add, and never remove existing files
-x, --silent Do not output the repository url
-m, --message <message> commit message (default: "Updates")
-g, --tag <tag> add tag to commit
registry "https://registry.npm.taobao.org" | |
disturl "https://npm.taobao.org/dist" | |
nvm_nodejs_org_mirror "http://npm.taobao.org/mirrors/node" | |
NODEJS_ORG_MIRROR "http://npm.taobao.org/mirrors/node" | |
sass_binary_site "http://npm.taobao.org/mirrors/node-sass" | |
electron_mirror "http://npm.taobao.org/mirrors/electron/" | |
SQLITE3_BINARY_SITE "http://npm.taobao.org/mirrors/sqlite3" | |
profiler_binary_host_mirror "http://npm.taobao.org/mirrors/node-inspector/" | |
node_inspector_cdnurl "https://npm.taobao.org/mirrors/node-inspector" | |
selenium_cdnurl "http://npm.taobao.org/mirrors/selenium" |
# package-lock=false | |
registry="https://registry.npm.taobao.org" | |
disturl="https://npm.taobao.org/dist" | |
nvm_nodejs_org_mirror="http://npm.taobao.org/mirrors/node" | |
nodejs_org_mirror="http://npm.taobao.org/mirrors/node" | |
sass_binary_site="http://npm.taobao.org/mirrors/node-sass" | |
electron_mirror="http://npm.taobao.org/mirrors/electron/" | |
SQLITE3_BINARY_SITE="http://npm.taobao.org/mirrors/sqlite3" | |
profiler_binary_host_mirror="http://npm.taobao.org/mirrors/node-inspector/" | |
node_inspector_cdnurl="https://npm.taobao.org/mirrors/node-inspector" |