Skip to content

Commit 1f9c331

Browse files
committed
chore: change resource url domain
1 parent 1f8ad9e commit 1f9c331

28 files changed

+35
-35
lines changed

articles/html5css/css/css_center.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: 让一个div垂直水平居中
33
author: lvzl
44
---
55

6-
<img data-fancybox="gallery" src="https://mp-cb2e47ef-a802-469a-a81c-2b6efa9f8b60.cdn.bspapp.com/blog-resource/images/divcenter.png" />
6+
<img data-fancybox="gallery" src="https://mp-780ec593-98c3-47c6-9328-1690ac79007b.cdn.bspapp.com/images//divcenter.png" />
77

88
<script setup>
99
import useFancybox from '@use/useFancybox.js'

articles/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ layout: page
99
@click="filterArticleByTag(tag)" :color="tagColors[tag]">{{ tag }}</tag>
1010
</div>
1111
<img class="drone"
12-
src="https://mp-cb2e47ef-a802-469a-a81c-2b6efa9f8b60.cdn.bspapp.com/blog-resource/images/hero-drone.webp" />
12+
src="https://mp-780ec593-98c3-47c6-9328-1690ac79007b.cdn.bspapp.com/images//hero-drone.webp" />
1313
<img class="cat"
14-
src="https://mp-cb2e47ef-a802-469a-a81c-2b6efa9f8b60.cdn.bspapp.com/blog-resource/images/astrocat.png" />
14+
src="https://mp-780ec593-98c3-47c6-9328-1690ac79007b.cdn.bspapp.com/images//astrocat.png" />
1515
<div :class="['article-time-line', show ? 'show' : 'hidden']">
1616
<div class="time-line">
1717
<time-line-item v-for="item in article" v-bind="item">
@@ -71,7 +71,7 @@ article.push(...originCopy)
7171
<style>
7272
#main-page {
7373
height: calc(100vh - 64px);
74-
background-image: url('https://mp-cb2e47ef-a802-469a-a81c-2b6efa9f8b60.cdn.bspapp.com/blog-resource/images/hero-bg-2x.webp');
74+
background-image: url('https://mp-780ec593-98c3-47c6-9328-1690ac79007b.cdn.bspapp.com/images//hero-bg-2x.webp');
7575
background-repeat: no-repeat;
7676
background-position: center;
7777
background-attachment: fixed;

articles/js/deep/declareVariable.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ author: lvzl
77
import XmindViewer from '@/XmindViewer'
88
</script>
99

10-
<XmindViewer url="https://mp-cb2e47ef-a802-469a-a81c-2b6efa9f8b60.cdn.bspapp.com/blog-resource/xmind/var-let-const.xmind"/>
10+
<XmindViewer url="https://mp-780ec593-98c3-47c6-9328-1690ac79007b.cdn.bspapp.com/xmind/var-let-const.xmind"/>

articles/js/deep/js-run.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ console.log(1);
7878
7979
## 流程图
8080

81-
<img data-fancybox="gallery" src="https://mp-cb2e47ef-a802-469a-a81c-2b6efa9f8b60.cdn.bspapp.com/blog-resource/images/js-run-async.jpg" />
81+
<img data-fancybox="gallery" src="https://mp-780ec593-98c3-47c6-9328-1690ac79007b.cdn.bspapp.com/images//js-run-async.jpg" />
8282

8383
## 参考
8484

articles/js/deep/js_event.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ author: lvzl
4747
</body>
4848
```
4949

50-
<img data-fancybox="gallery" src="https://mp-cb2e47ef-a802-469a-a81c-2b6efa9f8b60.cdn.bspapp.com/blog-resource/images/dom1-event.png" />
50+
<img data-fancybox="gallery" src="https://mp-780ec593-98c3-47c6-9328-1690ac79007b.cdn.bspapp.com/images//dom1-event.png" />
5151

5252
点击 `li` 元素,将依次打印: `li => ul => body`,这种通过`attachEvent`定义事件监听就是 `IE` 事件模型。
5353

@@ -77,6 +77,6 @@ author: lvzl
7777
</script>
7878
</body>
7979
```
80-
<img data-fancybox="gallery" src="https://mp-cb2e47ef-a802-469a-a81c-2b6efa9f8b60.cdn.bspapp.com/blog-resource/images/dom2-event.png" />
80+
<img data-fancybox="gallery" src="https://mp-780ec593-98c3-47c6-9328-1690ac79007b.cdn.bspapp.com/images//dom2-event.png" />
8181

8282
这种通过`addEventListener`定义事件监听就是 `DOM2` 级事件模型。

articles/js/deep/memory.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ author: lvzl
3030

3131
32 位:新生代 16MB 老生代 700MB
3232

33-
<img data-fancybox="gallery" src="https://mp-cb2e47ef-a802-469a-a81c-2b6efa9f8b60.cdn.bspapp.com/blog-resource/images/V8_memory.png" />
33+
<img data-fancybox="gallery" src="https://mp-780ec593-98c3-47c6-9328-1690ac79007b.cdn.bspapp.com/images//V8_memory.png" />
3434

3535
## 新生代内存
3636

@@ -86,7 +86,7 @@ for (let i = 0; i < 15; i++) {
8686
}
8787
```
8888

89-
<img data-fancybox="gallery" src="https://mp-cb2e47ef-a802-469a-a81c-2b6efa9f8b60.cdn.bspapp.com/blog-resource/images/image-20210108111222746.png" />
89+
<img data-fancybox="gallery" src="https://mp-780ec593-98c3-47c6-9328-1690ac79007b.cdn.bspapp.com/images//image-20210108111222746.png" />
9090

9191
在通过一个小例子来看下 JS 回收临时变量的过程:
9292

@@ -115,7 +115,7 @@ setInterval(() => {
115115
```
116116

117117
看图中圈出部分,已经进行了临时变量的回收。
118-
<img data-fancybox="gallery" src="https://mp-cb2e47ef-a802-469a-a81c-2b6efa9f8b60.cdn.bspapp.com/blog-resource/images/image-20210108112442102.png" />
118+
<img data-fancybox="gallery" src="https://mp-780ec593-98c3-47c6-9328-1690ac79007b.cdn.bspapp.com/images//image-20210108112442102.png" />
119119

120120
## 开发应该注意些什么
121121

articles/js/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ author: lvzl
1717

1818
## 进阶相关总览
1919

20-
<XmindViewer url="https://mp-cb2e47ef-a802-469a-a81c-2b6efa9f8b60.cdn.bspapp.com/blog-resource/xmind/jsdeep.xmind"/>
20+
<XmindViewer url="https://mp-780ec593-98c3-47c6-9328-1690ac79007b.cdn.bspapp.com/xmind/jsdeep.xmind"/>

articles/js/module/preview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ title: JS 模块化发展历程
33
author: lvzl
44
---
55

6-
<img src="https://mp-cb2e47ef-a802-469a-a81c-2b6efa9f8b60.cdn.bspapp.com/blog-resource/images/模块化发展历程.jpg" />
6+
<img src="https://mp-780ec593-98c3-47c6-9328-1690ac79007b.cdn.bspapp.com/images//模块化发展历程.jpg" />

articles/network/cross-origin.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ author: lvzl
77
import XmindViewer from '@/XmindViewer'
88
</script>
99

10-
<XmindViewer url="https://mp-cb2e47ef-a802-469a-a81c-2b6efa9f8b60.cdn.bspapp.com/blog-resource/xmind/cross-origin.xmind"/>
10+
<XmindViewer url="https://mp-780ec593-98c3-47c6-9328-1690ac79007b.cdn.bspapp.com/xmind/cross-origin.xmind"/>

articles/network/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ author: lvzl
88
import XmindViewer from '@/XmindViewer'
99
</script>
1010

11-
<XmindViewer url="https://mp-cb2e47ef-a802-469a-a81c-2b6efa9f8b60.cdn.bspapp.com/blog-resource/xmind/browser-rendering-flow.xmind"/>
11+
<XmindViewer url="https://mp-780ec593-98c3-47c6-9328-1690ac79007b.cdn.bspapp.com/xmind/browser-rendering-flow.xmind"/>

0 commit comments

Comments
 (0)