回答編集履歴
1
chousei
test
CHANGED
@@ -1 +1,27 @@
|
|
1
1
|
丸く切り取られ角に緑色が入った画像に変換されています
|
2
|
+
|
3
|
+
|
4
|
+
|
5
|
+
# svgサンプル
|
6
|
+
|
7
|
+
|
8
|
+
|
9
|
+
```SVG
|
10
|
+
|
11
|
+
<div style="background-Color:aqua">
|
12
|
+
|
13
|
+
<svg width="500" height="500">
|
14
|
+
|
15
|
+
<clipPath id="clip01">
|
16
|
+
|
17
|
+
<circle cx="250" cy="250" r="250" />
|
18
|
+
|
19
|
+
</clipPath>
|
20
|
+
|
21
|
+
<image xlink:href="https://www.td-media.net/_kds9dsx49_Fla11/wp-content/uploads/2017/04/Jaguar04_170418-500x500.jpg" clip-path="url(#clip01)" />
|
22
|
+
|
23
|
+
</svg>
|
24
|
+
|
25
|
+
</div>
|
26
|
+
|
27
|
+
```
|