Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

SVG <circle>


SVG 圆形 - <circle>

The <circle> 元素用于创建圆形。

The <circle> 元素具有三个基本属性来定位和设置圆形的大小

属性 描述
r 必需。圆形的半径
cx 圆形在 x 轴上的中心。默认值为 0
cy 圆形在 y 轴上的中心。默认值为 0

一个 SVG 圆形

以下示例创建了一个圆形

Sorry, your browser does not support inline SVG.

以下是 SVG 代码

示例

<svg height="100" width="100" xmlns="http://www.w3.org/2000/svg">
  <circle r="45" cx="50" cy="50" fill="red" />
</svg>
自己尝试 »

代码解释

  • The r 属性定义了圆形的半径
  • The cxcy 属性定义了圆形在 x 轴和 y 轴上的中心。如果省略,圆形的中心将设置为 (0,0)
  • The fill 属性定义了圆形的颜色

一个带有边框的 SVG 圆形

以下示例创建了一个带有边框的圆形

Sorry, your browser does not support inline SVG.

以下是 SVG 代码

示例

<svg height="100" width="100" xmlns="http://www.w3.org/2000/svg">
  <circle r="45" cx="50" cy="50" fill="red" stroke="green" stroke-width="3" />
</svg>
自己尝试 »

代码解释

  • The stroke 属性定义了圆形周围边框的颜色
  • The stroke-width 属性定义了圆形周围边框的宽度

一个具有透明度的 SVG 圆形

以下示例创建了一个具有透明度的圆形

Sorry, your browser does not support inline SVG.

以下是 SVG 代码

示例

<svg height="100" width="100" xmlns="http://www.w3.org/2000/svg">
  <circle r="45" cx="50" cy="50" fill="red" stroke="green" stroke-width="3" opacity="0.5" />
</svg>
自己尝试 »

代码解释

  • The opacity 属性定义了圆形的透明度

×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.