• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<svg width="200" height="200" viewBox="0 0 200 200">
2	<!-- 心形路径 -->
3	<path id="heart" fill="red" d="M100,36.4C70-15.2,0,10.4,0,60.4c0,40,100,80,100,80s100-40,100-80c0-50-70-75.6-100-24z">
4		<!-- 缩放动画 -->
5		<animateTransform
6			attributeName="transform"
7			type="scale"
8			values="1; 1.2; 1; 0.9; 1"
9			dur="1s"
10			repeatCount="1"
11		/>
12		<!-- 颜色变化动画 -->
13		<animate
14			attributeName="fill"
15			values="red; #ff6666; red; #ff9999; red"
16			dur="2s"
17			repeatCount="1"
18		/>
19	</path>
20
21	<!-- 旋转的小星星 -->
22	<polygon id="star" points="100,10 106,26 124,26 110,36 116,52 100,42 84,52 90,36 76,26 94,26" fill="gold">
23		<animateTransform
24			attributeName="transform"
25			type="rotate"
26			from="0 100 100"
27			to="360 100 100"
28			dur="4s"
29			repeatCount="1"
30		/>
31	</polygon>
32</svg>