Skip to content

Commit

Permalink
zh-CN: update 'images in html' (mdn#23515)
Browse files Browse the repository at this point in the history
  • Loading branch information
abing22333 authored and sora32127 committed Oct 6, 2024
1 parent e69257b commit 954a1b9
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -306,12 +306,12 @@ window.addEventListener("load", updateCode);
// 而是在当前光标位置插入一个制表符

textarea.onkeydown = (e) => {
if (e.keyCode === 9) {
if (e.code === "Tab") {
e.preventDefault();
insertAtCaret("\t");
}

if (e.keyCode === 27) {
if (e.code === "Escape") {
textarea.blur();
}
};
Expand Down Expand Up @@ -370,7 +370,7 @@ textarea.onkeyup = function () {

#### 自由许可

如果图像是根据自由许可发布的,例如 [MIT](https://mit-license.org/)[BSD](https://opensource.org/license/BSD-3-clause/) 或适当的[知识共享(CC)许可](https://creativecommons.org/choose/),你无需支付许可费用或寻求许可即可使用它。但是,你仍需履行各种许可条件,这些条件因许可而异。
如果图像是根据自由许可发布的,例如 [MIT](https://mit-license.org/)[BSD](https://opensource.org/license/BSD-3-clause) 或适当的[知识共享(CC)许可](https://chooser-beta.creativecommons.org/),你无需支付许可费用或寻求许可即可使用它。但是,你仍需履行各种许可条件,这些条件因许可而异。

例如,你可能需要:

Expand All @@ -394,7 +394,7 @@ Copyleft 许可在软件界中很常见。其基本思想是使用 copyleft 许

进入公共领域的作品有时被称为“无版权保留”——它们不受版权保护,可以在未经许可且无需履行任何许可条件的情况下使用。作品可以因为版权到期或特定放弃权利等方式进入公共领域。

将作品置于公共领域的最有效方法之一是将其许可为 [CC0](https://creativecommons.org/share-your-work/public-domain/cc0/),这是一种特定的创作共用许可,为此目的提供了清晰明确的法律工具。
将作品置于公共领域的最有效方法之一是将其许可为 [CC0](https://creativecommons.org/public-domain/cc0/),这是一种特定的创作共用许可,为此目的提供了清晰明确的法律工具。

在使用公共领域图像时,请获取证明该图像属于公共领域的证据,并将该证据保存记录。例如,使用截图记录原始来源(该来源需要清晰显示许可状态),并考虑在你的网站上添加一个页面,列出所获得的图像及其许可要求。

Expand All @@ -406,7 +406,7 @@ Copyleft 许可在软件界中很常见。其基本思想是使用 copyleft 许

某些搜索引擎会提供工具,帮助你查找具有自由许可的图像。例如,使用 Google 时,转到“图片”选项卡搜索图像,然后单击“工具”。在结果工具栏中有一个“使用权限”下拉菜单,你可以选择专门搜索根据创作共用许可授权的图像。

图像存储库网站,例如 [Flickr](https://flickr.com/)[ShutterStock](https://www.shutterstock.com)[Pixabay](https://pixabay.com/),具有搜索选项,允许你仅搜索具有自由许可的图像。一些网站专门分发具有自由许可的图像和图标,例如 [Picryl](https://picryl.com)[The Noun Project](https://thenounproject.com/)
图像存储库网站,例如 [Flickr](https://flickr.com/)[ShutterStock](https://www.shutterstock.com/)[Pixabay](https://pixabay.com/),具有搜索选项,允许你仅搜索具有自由许可的图像。一些网站专门分发具有自由许可的图像和图标,例如 [Picryl](https://picryl.com/)[The Noun Project](https://thenounproject.com/)

要想遵守图像发布的许可条件,你需要找到许可详细信息,阅读来源提供的许可证或指示页面,然后按照这些说明操作。值得信赖的图像存储库会清楚地列出其许可条件,并且易于查找。

Expand Down Expand Up @@ -551,12 +551,12 @@ window.addEventListener("load", updateCode);
// 而是在当前光标位置插入一个制表符

textarea.onkeydown = (e) => {
if (e.keyCode === 9) {
if (e.code === "Tab") {
e.preventDefault();
insertAtCaret("\t");
}

if (e.keyCode === 27) {
if (e.code === "Escape") {
textarea.blur();
}
};
Expand Down

0 comments on commit 954a1b9

Please sign in to comment.