From 1109132f09d75da9a28b649c7677bb6ce07c40c0 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:41:45 -0500 Subject: initial commit --- files/es/web/svg/element/circle/index.html | 116 +++++++++++++++++++++++++++++ 1 file changed, 116 insertions(+) create mode 100644 files/es/web/svg/element/circle/index.html (limited to 'files/es/web/svg/element/circle') diff --git a/files/es/web/svg/element/circle/index.html b/files/es/web/svg/element/circle/index.html new file mode 100644 index 0000000000..36b4f9e6c2 --- /dev/null +++ b/files/es/web/svg/element/circle/index.html @@ -0,0 +1,116 @@ +--- +title: circle +slug: Web/SVG/Element/circle +tags: + - Elemento + - Gráficos SVG + - Referencia + - SVG +translation_of: Web/SVG/Element/circle +--- +
{{SVGRef}}
+ +

El elemento circle es una forma básica de SVG, usada para crear circulos a partir de un punto, el cual indica el centro del circulo, y un radio.

+ +

Contexto de uso

+ +

{{svginfo}}

+ +

Ejemplo

+ +

 

+ +
<?xml version="1.0"?>
+<svg viewBox="0 0 120 120" version="1.1"
+  xmlns="http://www.w3.org/2000/svg">
+  <circle cx="60" cy="60" r="50"/>
+</svg>
+ +

 

+ +

» circulo.svg

+ +

Atributos

+ +

Atributos globales

+ + + +

Atributos específicos

+ + + +

Interfaz DOM

+ +

Este elemento implementa la interfaz {{ domxref("SVGCircleElement") }}.

+ +

Compatibilidad de navegadores

+ +

{{ CompatibilityTable() }}

+ +
+ + + + + + + + + + + + + + + + + + + +
CaracterísticaChromeFirefox (Gecko)Internet ExplorerOperaSafari
Soporte básico1.0{{ CompatGeckoDesktop('1.8') }}{{ CompatIE('9.0') }}{{ CompatOpera('8.0') }}{{ CompatSafari('3.0.4') }}
+
+ +
+ + + + + + + + + + + + + + + + + + + +
CaracterísticaAndroidFirefox Mobile (Gecko)IE PhoneOpera MobileSafari Mobile
Soporte básico{{ CompatAndroid('3.0') }}{{ CompatGeckoMobile('1.8') }}{{ CompatNo() }}{{ CompatVersionUnknown() }}{{ CompatSafari('3.0.4') }}
+
+ +

La gráfica está basada en estas fuentes.

+ +

Relacionado

+ + -- cgit v1.2.3-54-g00ecf