aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/svg/attribute/stroke-linecap/index.html
blob: f6aeccd3377d085b2c222f3b358804708f653bbd (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
---
title: stroke-linecap
slug: Web/SVG/Attribute/stroke-linecap
tags:
  - NeedsCompatTable
  - SVG
  - SVG Attribute
translation_of: Web/SVG/Attribute/stroke-linecap
---
<p>« <a href="/ja/docs/Web/SVG/Attribute" title="ja/docs/Web/SVG/Attribute">SVG 属性リファレンスホーム</a></p>

<p><code>stroke-linecap</code> 要素は線を引いた時の開いている部分パスの終端の形状を指定します。</p>

<p>プレゼンテーション属性であるため、直接 CSS スタイルシートの中で定義したプロパティとして使うこともできます。</p>

<h2 id="使用可能な場所">使用可能な場所</h2>

<table class="standard-table">
 <tbody>
  <tr>
   <th scope="row">カテゴリ</th>
   <td>プレゼンテーション属性</td>
  </tr>
  <tr>
   <th scope="row"></th>
   <td>butt | round | square | 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#StrokeLinecapProperty">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="120"
     viewBox="0 0 120 120" version="1.1"
     xmlns="http://www.w3.org/2000/svg"&gt;

    &lt;line stroke-linecap="butt"
          x1="30" y1="30" x2="30" y2="90"
          stroke="black" stroke-width="20"/&gt;

    &lt;line stroke-linecap="round"
          x1="60" y1="30" x2="60" y2="90"
          stroke="black" stroke-width="20"/&gt;

    &lt;line stroke-linecap="square"
          x1="90" y1="30" x2="90" y2="90"
          stroke="black" stroke-width="20"/&gt;

    &lt;path d="M30,30 L30,90 M60,30 L60,90 M90,30 L90,90"
          stroke="white" /&gt;
&lt;/svg&gt;</pre>

<p><strong>Live sample</strong></p>

<p>{{ EmbedLiveSample('Example','120','120') }}</p>

<h2 id="要素">要素</h2>

<p>以下の要素で <code>stroke-linecap</code> を使うことができます</p>

<ul>
 <li><a href="/ja/docs/Web/SVG/Element#Shape" title="ja/docs/Web/SVG/Element#Shape">Shape 要素</a> »</li>
 <li><a href="/ja/docs/Web/SVG/Element#TextContent" title="ja/docs/Web/SVG/Element#TextContent">Text content 要素</a> »</li>
</ul>