28 lines
1.1 KiB
HTML
28 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<body>
|
|
<svg
|
|
width="200"
|
|
height="200"
|
|
viewBox="0 0 200 200"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<defs>
|
|
<linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
<stop offset="0%" style="stop-color:#2196F3;stop-opacity:1" />
|
|
<stop offset="100%" style="stop-color:#0D47A1;stop-opacity:1" />
|
|
</linearGradient>
|
|
</defs>
|
|
<circle cx="50" cy="100" r="30" fill="url(#grad1)" />
|
|
<rect x="100" y="70" width="60" height="60" fill="url(#grad1)" />
|
|
<circle cx="170" cy="100" r="30" fill="url(#grad1)" />
|
|
<line x1="80" y1="100" x2="100" y2="100" stroke="#000" stroke-width="2" />
|
|
<line x1="160" y1="100" x2="170" y2="100" stroke="#000" stroke-width="2" />
|
|
<text x="50" y="100" text-anchor="middle" fill="#fff" font-size="12" dy=".3em">开始</text>
|
|
<text x="130" y="100" text-anchor="middle" fill="#fff" font-size="12" dy=".3em">过程</text>
|
|
<text x="170" y="100" text-anchor="middle" fill="#fff" font-size="12" dy=".3em">结束</text>
|
|
</svg>
|
|
</body>
|
|
|
|
</html>
|