一、CDN加速节点
1.http://www.staticfile.org (七牛云)
2.https://www.bootcdn.cn(猫云)
二、图片压缩
1.https://docsmall.com/image-compress(图片压缩)
三、Base64解码编码
1.https://c.runoob.com/front-end/693 (base64在线编码解码)
2.JavaScript编码|解码
2.1.Base64 编码
<script>
// 需要引入 CryptoJS;
var s = CryptoJS.enc.Utf8.parse(str);
base64 = CryptoJS.enc.Base64.stringify(s);
</script>
2.2.Base64 解码
<script>
// 需要引入 CryptoJS;
var s = CryptoJS.enc.Base64.parse(base64);
str = s.toString(CryptoJS.enc.Utf8);
</script>