在线工具(图片压缩/CDN加速节点)

一、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>
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容