Skip to content

Commit b7c20c3

Browse files
committed
Move images PNG to SVG
1 parent f93ab3a commit b7c20c3

File tree

750 files changed

+11332
-191
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

750 files changed

+11332
-191
lines changed

1-js/01-getting-started/1-intro/article.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ JavaScript 的能力依赖于它执行的环境。例如:[Node.js](https://wik
7575
这个限制也是为了用户的信息安全。例如,用户打开的 `http://anysite.com` 网页的 JavaScript 不能访问 `http://gmail.com`(另外一个标签页打开的网页)也不能从那里窃取信息。
7676
- JavaScript 通过互联网可以轻松地和服务器(当前网页域名的服务器)通讯。但是从其他网站/域的服务器中获取数据的能力是受限的,需要服务器(在 HTTP 头中)添加某些参数。这也是为了用户的数据安全。
7777

78-
![](limitations.png)
78+
![](limitations.svg)
7979

8080
浏览器环境外的 JavaScript 一般没有这些限制。例如服务端的 JavaScript 就没有这些限制。现代浏览器还允许通过 JavaScript 来安装浏览器插件或扩展,当然这也是在用户授权的前提下。
8181

-35.2 KB
Binary file not shown.

1-js/01-getting-started/1-intro/limitations.svg

+92
Loading
Binary file not shown.
Binary file not shown.
Binary file not shown.

1-js/02-first-steps/04-variables/article.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ let user = 'John'
9999
100100
例如,变量 `message` 可以被想象成一个标有 `"message"` 的盒子,在盒子里面,有一个值为 `"Hello!"`:
101101
102-
![](variable.png)
102+
![](variable.svg)
103103
104104
我们可以在盒子内放入任何值。
105105
@@ -116,7 +116,7 @@ alert(message);
116116
117117
当值改变的时候,先前的数据就从变量中删除了。
118118
119-
![](variable-change.png)
119+
![](variable-change.svg)
120120
121121
还可以声明两个变量,然后将其中一个变量的数据拷贝进另一个变量。
122122
Binary file not shown.
Loading
Binary file not shown.
-8.34 KB
Binary file not shown.
Loading
Binary file not shown.
Binary file not shown.
Loading
Binary file not shown.

1-js/02-first-steps/10-ifelse/2-check-standard/task.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ importance: 2
88

99
如果访问者输入了 "ECMAScript",输出就提示 "Right!",否则 — 输出:"Didn't know? ECMAScript!"
1010

11-
![](ifelse_task2.png)
11+
![](ifelse_task2.svg)
1212

1313
[示例 src="ifelse_task2"]
1414

Binary file not shown.

0 commit comments

Comments
 (0)