From 990b977a4fc78d2af552b104061854254c92d68b Mon Sep 17 00:00:00 2001 From: zhangjinchao Date: Fri, 1 Dec 2023 16:55:47 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=9B=BE=E7=89=87=E5=9C=B0=E5=9D=80?= =?UTF-8?q?=E6=9B=B4=E6=8D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/.vuepress/config/themeConfig.js | 2 +- ...214\347\273\264\346\225\260\347\273\204.md" | 2 +- ...213\343\200\213\347\254\224\350\256\260.md" | 2 +- ...213\343\200\213\347\254\224\350\256\260.md" | 2 +- ...Vue\343\200\213\347\254\224\350\256\260.md" | 2 +- ...AST\343\200\213\347\254\224\350\256\260.md" | 2 +- ...5\256\236\347\216\260 axios\343\200\213.md" | 2 +- ...261\350\211\262\346\250\241\345\274\217.md" | 2 +- ...60.CSS-function\346\261\207\346\200\273.md" | 2 +- .../01.\345\210\235\350\257\206 AST.md" | 18 +++++++++--------- ...241\344\270\216\345\256\236\347\216\260.md" | 2 +- 11 files changed, 19 insertions(+), 19 deletions(-) diff --git a/docs/.vuepress/config/themeConfig.js b/docs/.vuepress/config/themeConfig.js index 085df27a..7bdbf8db 100644 --- a/docs/.vuepress/config/themeConfig.js +++ b/docs/.vuepress/config/themeConfig.js @@ -51,7 +51,7 @@ module.exports = { blogger: { // 博主信息,显示在首页侧边栏 avatar: - 'https://jsd.cdn.zzko.cn/gh/Ethan-zjc/picx-images-hosting@master/20231017/v2-3b4fc7e3a1195a081d0259246c38debc_1440w.7g0i5tb41cw0.webp', + 'https://raw.githubusercontent.com/Ethan-zjc/picx-images-hosting/master/20231017/v2-3b4fc7e3a1195a081d0259246c38debc_1440w.7g0i5tb41cw0.webp', name: 'Ethan', slogan: '前端界的小学生', }, diff --git "a/docs/01.\345\211\215\347\253\257/25.JavaScript\346\226\207\347\253\240/70.\345\260\206\344\270\200\347\273\264\346\225\260\347\273\204\346\214\211\346\214\207\345\256\232\351\225\277\345\272\246\350\275\254\344\270\272\344\272\214\347\273\264\346\225\260\347\273\204.md" "b/docs/01.\345\211\215\347\253\257/25.JavaScript\346\226\207\347\253\240/70.\345\260\206\344\270\200\347\273\264\346\225\260\347\273\204\346\214\211\346\214\207\345\256\232\351\225\277\345\272\246\350\275\254\344\270\272\344\272\214\347\273\264\346\225\260\347\273\204.md" index 096c468d..968d8150 100644 --- "a/docs/01.\345\211\215\347\253\257/25.JavaScript\346\226\207\347\253\240/70.\345\260\206\344\270\200\347\273\264\346\225\260\347\273\204\346\214\211\346\214\207\345\256\232\351\225\277\345\272\246\350\275\254\344\270\272\344\272\214\347\273\264\346\225\260\347\273\204.md" +++ "b/docs/01.\345\211\215\347\253\257/25.JavaScript\346\226\207\347\253\240/70.\345\260\206\344\270\200\347\273\264\346\225\260\347\273\204\346\214\211\346\214\207\345\256\232\351\225\277\345\272\246\350\275\254\344\270\272\344\272\214\347\273\264\346\225\260\347\273\204.md" @@ -38,7 +38,7 @@ console.log(pages(arr, 8)) // [[1, 2, 3, 4, 5, 6, 7, 8], [9]] 如图,按需求,图标模块中的图标个数是不确定的,每页最多显示8个,超出8个的显示到第二页,实现向左滑动翻页。提供的数据是一个一维数组,这时就可以使用上面的代码按长度为8转为二维数组,再分页渲染到页面。 -![](https://jsd.cdn.zzko.cn/gh/Ethan-zjc/picx-images-hosting@master/20231110142410.3e0eb5okn6w0.webp) +![](https://raw.githubusercontent.com/Ethan-zjc/picx-images-hosting/master/20231110142410.3e0eb5okn6w0.webp) ```html