1
2
3
4
5
6
7
8
9
10
11
12
13

```html
<svg width="200" height="200" viewBox="-15 -15 30 30">
<circle fill="#e5c39c" r="6" />
<line id="ray" stroke="#e5c39c" stroke-width="2" stroke-linecap="round" x1="0" y1="11" x2="0" y2="14"></line>
<use href="#ray" transform="rotate(45)" />
<use href="#ray" transform="rotate(90)" />
<use href="#ray" transform="rotate(135)" />
<use href="#ray" transform="rotate(180)" />
<use href="#ray" transform="rotate(225)" />
<use href="#ray" transform="rotate(270)" />
<use href="#ray" transform="rotate(315)" />
</svg>

最后更新: 2024年03月21日 17:35