溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

html5 SVG 涂鴉

發(fā)布時(shí)間:2020-03-01 18:50:24 來(lái)源:網(wǎng)絡(luò) 閱讀:392 作者:antlove 欄目:移動(dòng)開(kāi)發(fā)
<!DOCTYPE HTML>
<html>
<body>

<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="1000px" height="800px">

<rect
	x="20" 
	y="20" 
	rx="20" 
	ry="20" 
	width="250" 
	height="100" 
	/>

<circle 
	cx="100" 
	cy="160" 
	r="40" 
	stroke="black"
	stroke-width="2" 
	fill="red"
	/>


<ellipse cx="240" cy="230" rx="220" ry="30" />

<ellipse cx="220" cy="270" rx="190" ry="20" />

<ellipse cx="210" cy="345" rx="170" ry="15" />

<line x1="0" y1="0" x2="300" y2="300" />

<polygon points="220,400 300,610 170,650 123,434" />

<polyline points="400,0 400,20 420,20 420,40 440,40 440,60" />

<path d="M153 334
C153 334 151 334 151 334
C151 339 153 344 156 344
C164 344 171 339 171 334
C171 322 164 314 156 314
C142 314 131 322 131 334
C131 350 142 364 156 364
C175 364 191 350 191 334
C191 311 175 294 156 294
C131 294 111 311 111 334
C111 361 131 384 156 384
C186 384 211 361 211 334
C411 300 886 674 500 600"
/>

<defs>
	<filter id="Gaussian_Blur">
		<feGaussianBlur in="SourceGraphic" stdDeviation="20"/>
	</filter>
</defs>

<ellipse 
	cx="500" 
	cy="150" 
	rx="70" 
	ry="40"
	/>

<defs>
	<linearGradient id="orange_red" x1="0%" y1="0%" x2="100%" y2="0%">
		<stop offset="0%" />
		<stop offset="100%" />
	</linearGradient>
</defs>

<ellipse cx="720" cy="190" rx="85" ry="55" />


<defs>
	<radialGradient id="grey_blue" cx="50%" cy="50%" r="80%" fx="50%" fy="50%">
		<stop offset="0%" />
		<stop offset="100%" />
	</radialGradient>
</defs>

<ellipse cx="750" cy="400" rx="110" ry="100" />

</svg>

</body>
</html>


向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI