Legend:
- ✏️ method changes
this
. - 🔒 method does not change
this
.
Array<T>.prototype.*
:
concat(...items: Array): T[]
🔒 ES3
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 |
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); |
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.