From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- .../web/svg/attribute/stroke-linejoin/index.html | 86 ++++++++++++++++++++++ 1 file changed, 86 insertions(+) create mode 100644 files/ja/web/svg/attribute/stroke-linejoin/index.html (limited to 'files/ja/web/svg/attribute/stroke-linejoin') 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 +--- +

« SVG 属性リファレンスホーム

+ +

stroke-linejoin 属性は線を引いた時のパスの曲がりまたは基本的な輪郭の形状を指定します。

+ +

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

+ +

注意: miter オプションの最終的な見た目は stroke-miterlimit 属性の値の影響を受けます。

+ +

使用可能な場所

+ + + + + + + + + + + + + + + + + + + + +
カテゴリプレゼンテーション属性
miter | round | bevel | inherit
アニメーションYes
標準文書SVG 1.1 (2nd Edition)
+ +

+ +
<?xml version="1.0"?>
+<svg width="120" height="300"
+     viewBox="0 0 120 300" version="1.1"
+     xmlns="http://www.w3.org/2000/svg">
+
+    <polyline stroke-linejoin="miter"
+              points="-20,115 60,40 140,115"
+              stroke="black" stroke-width="40"
+              fill="none" />
+
+    <polyline stroke-linejoin="round"
+              points="-20,200 60,125 140,200"
+              stroke="black" stroke-width="40"
+              fill="none" />
+
+    <polyline stroke-linejoin="bevel"
+              points="-20,285 60,210 140,285"
+              stroke="black" stroke-width="40"
+              fill="none" />
+
+    <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" />
+</svg>
+ +

Live sample

+ +

{{ EmbedLiveSample('Example','120','300') }}

+ +

要素

+ +

以下の要素で stroke-linejoin 属性を使うことができます

+ + + +

 

+ +

関連

+ + -- cgit v1.2.3-54-g00ecf