aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/svg/attribute/stroke-linejoin/index.html
blob: 9c11e91b5eebaf379ef25c70a0b106b7a686da01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
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">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">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">Shape 要素</a> »</li>
 <li><a href="/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>