aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/svg/tutorial
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2021-07-28 12:32:33 -0400
committerGitHub <noreply@github.com>2021-07-29 00:32:33 +0800
commit6d3234e3f9ff37cbd766dc00c607828ad6f34a53 (patch)
tree1fd72c8daa9ab98415f1fc0cad527ce0c5df2552 /files/zh-cn/web/svg/tutorial
parent43a2fc260b557fa0f6f2a3c1d9da94d61fa9b732 (diff)
downloadtranslated-content-6d3234e3f9ff37cbd766dc00c607828ad6f34a53.tar.gz
translated-content-6d3234e3f9ff37cbd766dc00c607828ad6f34a53.tar.bz2
translated-content-6d3234e3f9ff37cbd766dc00c607828ad6f34a53.zip
remove link 'title' attributes that's just the 'href' (zh-cn, part 2) (#1730)
* remove link 'title' attributes that's just the 'href' (zh-cn, part 2) * more fixes
Diffstat (limited to 'files/zh-cn/web/svg/tutorial')
-rw-r--r--files/zh-cn/web/svg/tutorial/fills_and_strokes/index.html4
-rw-r--r--files/zh-cn/web/svg/tutorial/index.html2
-rw-r--r--files/zh-cn/web/svg/tutorial/tools_for_svg/index.html4
3 files changed, 5 insertions, 5 deletions
diff --git a/files/zh-cn/web/svg/tutorial/fills_and_strokes/index.html b/files/zh-cn/web/svg/tutorial/fills_and_strokes/index.html
index 65eeaebad8..caf336dd4b 100644
--- a/files/zh-cn/web/svg/tutorial/fills_and_strokes/index.html
+++ b/files/zh-cn/web/svg/tutorial/fills_and_strokes/index.html
@@ -89,7 +89,7 @@ translation_of: Web/SVG/Tutorial/Fills_and_Strokes
<p>除了定义对象的属性外,你也可以通过CSS来样式化<code>填充</code>和<code>描边</code>。语法和在html里使用CSS一样,只不过你要把<code>background-color</code>、<code>border</code>改成<code>fill</code>和<code>stroke</code>。注意,不是所有的属性都能用CSS来设置。上色和填充的部分一般是可以用CSS来设置的,比如<code>fill</code>,<code>stroke</code>,<code>stroke-dasharray</code>等,但是不包括下面会提到的渐变和图案等功能。另外,<code>width</code>、<code>height</code>,以及路径的命令等等,都不能用css设置。判断它们能不能用CSS设置还是比较容易的。</p>
-<div class="note style-wrap"><a class="external external-icon" href="http://www.w3.org/TR/SVG/propidx.html" title="http://www.w3.org/TR/SVG/propidx.html">SVG规范</a>将属性区分成properties和其他attributes,前者是可以用CSS设置的,后者不能。</div>
+<div class="note style-wrap"><a class="external external-icon" href="http://www.w3.org/TR/SVG/propidx.html">SVG规范</a>将属性区分成properties和其他attributes,前者是可以用CSS设置的,后者不能。</div>
<p>CSS可以利用style属性插入到元素的行间:</p>
@@ -121,7 +121,7 @@ translation_of: Web/SVG/Tutorial/Fills_and_Strokes
<p>你最好读一下CSS教程以便掌握它,一些可以在html里使用的css,在svg里可能无法正常工作,比如<code>before</code>和<code>after</code>伪类。所以这里需要一点经验。</p>
-<p>你也可以定义一个外部的样式表,但是要符合<a class="external external-icon" href="http://www.w3.org/TR/xml-stylesheet/" title="http://www.w3.org/TR/xml-stylesheet/">normal XML-stylesheet syntax</a>的CSS规则:</p>
+<p>你也可以定义一个外部的样式表,但是要符合<a class="external external-icon" href="http://www.w3.org/TR/xml-stylesheet/">normal XML-stylesheet syntax</a>的CSS规则:</p>
<pre class="brush:xml;">&lt;?xml version="1.0" standalone="no"?&gt;
&lt;?xml-stylesheet type="text/css" href="style.css"?&gt;
diff --git a/files/zh-cn/web/svg/tutorial/index.html b/files/zh-cn/web/svg/tutorial/index.html
index 9726ef006a..495780b1b3 100644
--- a/files/zh-cn/web/svg/tutorial/index.html
+++ b/files/zh-cn/web/svg/tutorial/index.html
@@ -12,7 +12,7 @@ translation_of: Web/SVG/Tutorial
---
<p>可缩放矢量图形,即<a href="/zh-CN/SVG" title="zh-CN/SVG">SVG</a>,是W3C XML的分支语言之一,用于标记可缩放的矢量图形。目前SVG在Firefox、Opera、Webkit浏览器、IE等浏览器中已经部分实现。</p>
-<p>本教程旨在解释SVG内部的技术细节。如果你希望绘制非常漂亮的图形,你可以在<a class="external" href="http://inkscape.org/doc/">Inkscape的文档页面</a>上获取更多有用的资源。另外还有一个比较好的SVG介绍:<a class="external" href="http://www.w3.org/Graphics/SVG/IG/resources/svgprimer.html" title="http://www.w3.org/Graphics/SVG/IG/resources/svgprimer.html">W3C的SVG入门</a>。</p>
+<p>本教程旨在解释SVG内部的技术细节。如果你希望绘制非常漂亮的图形,你可以在<a class="external" href="http://inkscape.org/doc/">Inkscape的文档页面</a>上获取更多有用的资源。另外还有一个比较好的SVG介绍:<a class="external" href="http://www.w3.org/Graphics/SVG/IG/resources/svgprimer.html">W3C的SVG入门</a>。</p>
<div class="note">本教程还在初期阶段,如果你有能力,可以来增加扩展一两段,写一整页的话会给加分!</div>
diff --git a/files/zh-cn/web/svg/tutorial/tools_for_svg/index.html b/files/zh-cn/web/svg/tutorial/tools_for_svg/index.html
index e2c7ee0b99..9fb8bbc0d7 100644
--- a/files/zh-cn/web/svg/tutorial/tools_for_svg/index.html
+++ b/files/zh-cn/web/svg/tutorial/tools_for_svg/index.html
@@ -13,7 +13,7 @@ translation_of: Web/SVG/Tutorial/Tools_for_SVG
<h2 id="Inkscape">Inkscape</h2>
-<p>URL: <a class="external" href="http://www.inkscape.org" title="http://www.inkscape.org/">www.inkscape.org</a></p>
+<p>URL: <a class="external" href="http://www.inkscape.org">www.inkscape.org</a></p>
<p>图形格式最重要的工具之一,是一个相当好的绘图程序。Inkscape提供了最先进的矢量绘图功能,而且它是开源的。</p>
@@ -37,7 +37,7 @@ translation_of: Web/SVG/Tutorial/Tools_for_SVG
<h3 id="其它呈现器">其它呈现器</h3>
-<p>要想从一个SVG源创建一个光栅图像,存在很多个项目。<a class="external" href="http://ImageMagick.org">ImageMagick</a>是最著名的命名行图象处理工具之一。Wikipedia所用到的Gnome库<a class="external" href="http://library.gnome.org/devel/rsvg/" title="http://library.gnome.org/devel/rsvg/">rsvg</a>能把它们的SVG图形光栅化。</p>
+<p>要想从一个SVG源创建一个光栅图像,存在很多个项目。<a class="external" href="http://ImageMagick.org">ImageMagick</a>是最著名的命名行图象处理工具之一。Wikipedia所用到的Gnome库<a class="external" href="http://library.gnome.org/devel/rsvg/">rsvg</a>能把它们的SVG图形光栅化。</p>
<h2 id="Raphael_JS">Raphael JS</h2>