aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/svg/attribute/stroke-linejoin
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
commit33058f2b292b3a581333bdfb21b8f671898c5060 (patch)
tree51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/web/svg/attribute/stroke-linejoin
parent8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff)
downloadtranslated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip
initial commit
Diffstat (limited to 'files/ja/web/svg/attribute/stroke-linejoin')
-rw-r--r--files/ja/web/svg/attribute/stroke-linejoin/index.html86
1 files changed, 86 insertions, 0 deletions
diff --git a/files/ja/web/svg/attribute/stroke-linejoin/index.html b/files/ja/web/svg/attribute/stroke-linejoin/index.html
new file mode 100644
index 0000000000..7eec62fecb
--- /dev/null
+++ b/files/ja/web/svg/attribute/stroke-linejoin/index.html
@@ -0,0 +1,86 @@
+---
+title: stroke-linejoin
+slug: Web/SVG/Attribute/stroke-linejoin
+tags:
+ - NeedsCompatTable
+ - SVG
+ - SVG Attribute
+translation_of: Web/SVG/Attribute/stroke-linejoin
+---
+<p>« <a href="/ja/docs/Web/SVG/Attribute" title="ja/SVG/Attribute">SVG 属性リファレンスホーム</a></p>
+
+<p><code>stroke-linejoin</code> 属性は線を引いた時のパスの曲がりまたは基本的な輪郭の形状を指定します。</p>
+
+<p>プレゼンテーション属性のため、直接 CSS スタイルシートの中で定義したプロパティとして使うこともできます。</p>
+
+<p><strong>注意:</strong> <code>miter</code> オプションの最終的な見た目は <code><a href="/ja/docs/Web/SVG/Attribute/stroke-miterlimit">stroke-miterlimit</a></code> 属性の値の影響を受けます。</p>
+
+<h2 id="Usage_context" name="Usage_context">使用可能な場所</h2>
+
+<table class="standard-table">
+ <tbody>
+ <tr>
+ <th scope="row">カテゴリ</th>
+ <td>プレゼンテーション属性</td>
+ </tr>
+ <tr>
+ <th scope="row">値</th>
+ <td><strong title="this is the default value">miter</strong> | round | bevel | inherit</td>
+ </tr>
+ <tr>
+ <th scope="row">アニメーション</th>
+ <td>Yes</td>
+ </tr>
+ <tr>
+ <th scope="row">標準文書</th>
+ <td><a class="external" href="http://www.w3.org/TR/SVG/painting.html#StrokeLinejoinProperty" title="http://www.w3.org/TR/SVG/painting.html#StrokeLinejoinProperty">SVG 1.1 (2nd Edition)</a></td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Example" name="Example">例</h2>
+
+<pre class="brush: html">&lt;?xml version="1.0"?&gt;
+&lt;svg width="120" height="300"
+ viewBox="0 0 120 300" version="1.1"
+ xmlns="http://www.w3.org/2000/svg"&gt;
+
+ &lt;polyline stroke-linejoin="miter"
+ points="-20,115 60,40 140,115"
+ stroke="black" stroke-width="40"
+ fill="none" /&gt;
+
+ &lt;polyline stroke-linejoin="round"
+ points="-20,200 60,125 140,200"
+ stroke="black" stroke-width="40"
+ fill="none" /&gt;
+
+ &lt;polyline stroke-linejoin="bevel"
+ points="-20,285 60,210 140,285"
+ stroke="black" stroke-width="40"
+ fill="none" /&gt;
+
+ &lt;path d="M-20,115 L60,40 L140,115 M-20,200 L60,125 L140,200 M-20,285 L60,210 L140,285"
+ stroke="white" fill="none" /&gt;
+&lt;/svg&gt;</pre>
+
+<p><strong>Live sample</strong></p>
+
+<p>{{ EmbedLiveSample('Example','120','300') }}</p>
+
+<h2 id="要素">要素</h2>
+
+<p>以下の要素で <code>stroke-linejoin</code> 属性を使うことができます</p>
+
+<ul>
+ <li><a href="/ja/SVG/Element#Shape" title="ja/SVG/Element#Shape">Shape 要素</a> »</li>
+ <li><a href="/ja/SVG/Element#TextContent" title="ja/SVG/Element#TextContent">Text content 要素</a> »</li>
+</ul>
+
+<p> </p>
+
+<h2 id="関連">関連</h2>
+
+<ul>
+ <li><a href="/ja/docs/Web/SVG/Attribute/stroke-miterlimit">stroke-miterlimit</a></li>
+</ul>