fp-webui 0.1.1.dev0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of fp-webui might be problematic. Click here for more details.

File without changes
@@ -0,0 +1,115 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 500 500" width="500" height="500">
2
+ <defs>
3
+ <!-- 背景网格 -->
4
+ <pattern id="grid" width="25" height="25" patternUnits="userSpaceOnUse">
5
+ <path d="M 25 0 L 0 0 0 25" fill="none" stroke="#1a3a3a" stroke-width="0.5"/>
6
+ </pattern>
7
+
8
+ <!-- 光环渐变 -->
9
+ <radialGradient id="haloGrad1" cx="50%" cy="50%" r="50%">
10
+ <stop offset="0%" stop-color="#0a0a0a"/>
11
+ <stop offset="100%" stop-color="#1a1a1a"/>
12
+ </radialGradient>
13
+
14
+ <radialGradient id="haloGrad2" cx="50%" cy="50%" r="50%">
15
+ <stop offset="0%" stop-color="#1a1a1a"/>
16
+ <stop offset="100%" stop-color="#2d3d3d"/>
17
+ </radialGradient>
18
+
19
+ <radialGradient id="haloGrad3" cx="50%" cy="50%" r="50%">
20
+ <stop offset="0%" stop-color="#2d3d3d"/>
21
+ <stop offset="100%" stop-color="#3d5050"/>
22
+ </radialGradient>
23
+
24
+ <radialGradient id="haloGrad4" cx="50%" cy="50%" r="50%">
25
+ <stop offset="0%" stop-color="#3d5050"/>
26
+ <stop offset="100%" stop-color="#4a6565"/>
27
+ </radialGradient>
28
+
29
+ <!-- 发光滤镜 -->
30
+ <filter id="glow" x="-20%" y="-20%" width="140%" height="140%">
31
+ <feGaussianBlur stdDeviation="3" result="blur"/>
32
+ <feMerge>
33
+ <feMergeNode in="blur"/>
34
+ <feMergeNode in="SourceGraphic"/>
35
+ </feMerge>
36
+ </filter>
37
+
38
+ <filter id="glowStrong" x="-30%" y="-30%" width="160%" height="160%">
39
+ <feGaussianBlur stdDeviation="6" result="blur"/>
40
+ <feMerge>
41
+ <feMergeNode in="blur"/>
42
+ <feMergeNode in="SourceGraphic"/>
43
+ </feMerge>
44
+ </filter>
45
+ </defs>
46
+
47
+ <!-- 背景 -->
48
+ <rect width="500" height="500" fill="#0d2626"/>
49
+ <rect width="500" height="500" fill="url(#grid)"/>
50
+
51
+ <!-- 中心点 -->
52
+ <circle cx="250" cy="250" r="8" fill="#111" filter="url(#glow)"/>
53
+
54
+ <!-- 第一层光环(最内圈,深色) -->
55
+ <circle cx="250" cy="250" r="45" fill="url(#haloGrad1)" stroke="#1a1a1a" stroke-width="2" filter="url(#glow)"/>
56
+
57
+ <!-- 第二层光环 -->
58
+ <circle cx="250" cy="250" r="70" fill="none" stroke="#2d3d3d" stroke-width="18" opacity="0.9" filter="url(#glow)"/>
59
+
60
+ <!-- 第三层光环 -->
61
+ <circle cx="250" cy="250" r="95" fill="none" stroke="#3d5555" stroke-width="15" opacity="0.8" filter="url(#glow)"/>
62
+
63
+ <!-- 第四层光环 -->
64
+ <circle cx="250" cy="250" r="118" fill="none" stroke="#4a6a6a" stroke-width="12" opacity="0.7" filter="url(#glow)"/>
65
+
66
+ <!-- 第五层光环(较亮) -->
67
+ <circle cx="250" cy="250" r="140" fill="none" stroke="#5a8080" stroke-width="8" opacity="0.6" filter="url(#glowStrong)"/>
68
+
69
+ <!-- 第六层光环(最外圈,带刻度) -->
70
+ <circle cx="250" cy="250" r="165" fill="none" stroke="#6a9595" stroke-width="4" opacity="0.5" filter="url(#glow)"/>
71
+
72
+ <!-- 外圈刻度标记(虚线环) -->
73
+ <circle cx="250" cy="250" r="180" fill="none" stroke="#8ab0b0" stroke-width="2"
74
+ stroke-dasharray="4 8" opacity="0.7" filter="url(#glow)"/>
75
+
76
+ <!-- 更外层的虚线刻度 -->
77
+ <circle cx="250" cy="250" r="195" fill="none" stroke="#7aa0a0" stroke-width="1.5"
78
+ stroke-dasharray="2 12" opacity="0.5"/>
79
+
80
+ <!-- 刻度短线(模拟仪表盘刻度) -->
81
+ <g stroke="#9ac0c0" stroke-width="2" opacity="0.8" filter="url(#glow)">
82
+ <!-- 12个主要刻度 -->
83
+ <line x1="250" y1="60" x2="250" y2="72" transform="rotate(0 250 250)"/>
84
+ <line x1="250" y1="60" x2="250" y2="72" transform="rotate(30 250 250)"/>
85
+ <line x1="250" y1="60" x2="250" y2="72" transform="rotate(60 250 250)"/>
86
+ <line x1="250" y1="60" x2="250" y2="72" transform="rotate(90 250 250)"/>
87
+ <line x1="250" y1="60" x2="250" y2="72" transform="rotate(120 250 250)"/>
88
+ <line x1="250" y1="60" x2="250" y2="72" transform="rotate(150 250 250)"/>
89
+ <line x1="250" y1="60" x2="250" y2="72" transform="rotate(180 250 250)"/>
90
+ <line x1="250" y1="60" x2="250" y2="72" transform="rotate(210 250 250)"/>
91
+ <line x1="250" y1="60" x2="250" y2="72" transform="rotate(240 250 250)"/>
92
+ <line x1="250" y1="60" x2="250" y2="72" transform="rotate(270 250 250)"/>
93
+ <line x1="250" y1="60" x2="250" y2="72" transform="rotate(300 250 250)"/>
94
+ <line x1="250" y1="60" x2="250" y2="72" transform="rotate(330 250 250)"/>
95
+ </g>
96
+
97
+ <!-- 小刻度 -->
98
+ <g stroke="#7aa0a0" stroke-width="1" opacity="0.5">
99
+ <line x1="250" y1="65" x2="250" y2="72" transform="rotate(15 250 250)"/>
100
+ <line x1="250" y1="65" x2="250" y2="72" transform="rotate(45 250 250)"/>
101
+ <line x1="250" y1="65" x2="250" y2="72" transform="rotate(75 250 250)"/>
102
+ <line x1="250" y1="65" x2="250" y2="72" transform="rotate(105 250 250)"/>
103
+ <line x1="250" y1="65" x2="250" y2="72" transform="rotate(135 250 250)"/>
104
+ <line x1="250" y1="65" x2="250" y2="72" transform="rotate(165 250 250)"/>
105
+ <line x1="250" y1="65" x2="250" y2="72" transform="rotate(195 250 250)"/>
106
+ <line x1="250" y1="65" x2="250" y2="72" transform="rotate(225 250 250)"/>
107
+ <line x1="250" y1="65" x2="250" y2="72" transform="rotate(255 250 250)"/>
108
+ <line x1="250" y1="65" x2="250" y2="72" transform="rotate(285 250 250)"/>
109
+ <line x1="250" y1="65" x2="250" y2="72" transform="rotate(315 250 250)"/>
110
+ <line x1="250" y1="65" x2="250" y2="72" transform="rotate(345 250 250)"/>
111
+ </g>
112
+
113
+ <!-- 中心发光效果 -->
114
+ <circle cx="250" cy="250" r="30" fill="none" stroke="#5a8a8a" stroke-width="1" opacity="0.4" filter="url(#glowStrong)"/>
115
+ </svg>
Binary file