SVG significa Gráfico vectorial escalable. Se puede usar para hacer gráficos y animaciones como en el lienzo HTML. Es un tipo de gráfico vectorial que se puede ampliar o reducir. Las propiedades se usan para pasar el valor al elemento, hay muchas propiedades que se pueden usar en los elementos SVG.
Lista de propiedades SVG:
- SVG AElement.href Propiedad
- Prefijo SVG Propiedad
- Propiedad de URI del espacio de nombres de SVG
- Propiedad SVG DOMStringList.length
- SVG propietarioElemento Propiedad
- Propiedad SVG TextPathElement.startOffset
- Propiedad SVG localName
- Propiedad SVG Event.returnValue
- SVG Event.isPropiedad de confianza
- Propiedad SVG Event.returnValue
- Propiedad SVG Event.currentTarget
- SVG Event.burbujas Propiedad
- Propiedad SVG Event.composed
- Propiedad SVG Event.defaultPrevented
- Evento SVG.propiedad cancelable
- Elemento SVG.outerHTML Propiedad
- Propiedad SVG Document.doctype
- Propiedad SVG Document.head
- Propiedad SVG Document.body
- Propiedad SVG Document.image
- Propiedad SVG Document.timeline
- Propiedad SVG Document.scripts
- Documento SVG.propiedad oculta
- Propiedad SVG Document.documentURI
- Propiedad SVG Document.documentElement
- Propiedad SVG LineElement.x2
- Propiedad SVG LineElement.y2
- Propiedad SVG LineElement.x1
- Propiedad SVG LineElement.y1
- Elemento SVG.parte Propiedad
- Propiedad SVG Element.id
- Elemento SVG.atributos Propiedad
- Propiedad SVG Element.classList
- Propiedad SVG Element.className
- Propiedad SVG Element.innerHTML
- SVG LinearGradientElement.x2 Propiedad
- SVG LinearGradientElement.y1
- SVG LinearGradientElement.y2 Propiedad
- SVG LinearGradientElement.x1 Propiedad
- SVG EllipseElement.ry Propiedad
- SVG EllipseElement.rx Propiedad
- Propiedad SVG EllipseElement.cy
- Propiedad SVG EllipseElement.cx
- SVG RectElement.y Propiedad
- SVG RectElement.x Propiedad
- SVG RectElement.ry Propiedad
- Propiedad SVG RectElement.width
- SVG RectElement.propiedad de altura
- SVG RectElement.rx Propiedad
- Propiedad SVG CircleElement.r
- Propiedad SVG CircleElement.cy
- Propiedad SVG CircleElement.cx
- Atributo de opacidad de SVG
- Propiedad SVG ScriptElement.type
- Propiedades de trazo SVG
- Propiedad SVG SpecularLighting.specularExponent
- Propiedad SVG SpecularLighting.kernelUnitLengthY
- Propiedad SVG UseElement.height
- Propiedad SVG UseElement.width
- Propiedad SVG UseElement.x
- Propiedad SVG UseElement.y
- Propiedad SVG window.closed
- Propiedad SVG window.crypto
- Propiedad SVG window.history
- Propiedad SVG window.toolbar
- Propiedad SVG window.isSecureContext
- Propiedad SVG window.statusbar
- SVG window.document Propiedad
- Propiedad SVG window.event
- Propiedad SVG window.performance
- Propiedad SVG window.menubar
- Propiedad SVG window.scrollbars
- Propiedad SVG FEBlendElement.mode
- SVG FEBlendElement.in2 Propiedad
- SVG FEBlendElement.in1 Propiedad
- Propiedad SVG FEDisplacementMap.scale
- SVG FEDisplacementMap.in2 Propiedad
- SVG FEDisplacementMap.in1 Propiedad
- SVG FEDisplacementMap.xChannelSelector Propiedad
- SVG FEDisplacementMap.yChannelSelector Propiedad
- SVG FEDropShadow.dx Propiedad
- SVG FEDropShadow.dy Propiedad
- SVG FEDropShadow.in1 Propiedad
- SVG FEDropShadow.stdDeviationX Propiedad
- SVG FEDropShadow.stdDeviationY Propiedad
- SVG FEGaussionBlur.in1 Propiedad
- SVG FEGaussionBlur.stdDeviationX Propiedad
- SVG FEGaussionBlur.stdDeviationY Propiedad
- SVG FEMergeNode.in1 Propiedad
- SVG FEOffset.in1 Propiedad
- SVG FEOffset.dx Propiedad
- SVG FEOffset.dy Propiedad
- SVG FESpotLightElement.z Propiedad
- SVG FESpotLightElement.x Propiedad
- SVG FESpotLightElement.y Propiedad
- SVG FESpotLightElement.pointsAtX Propiedad
- SVG FESpotLightElement.limitingConeAngle Propiedad
- SVG FESpecularLighting.in1 Propiedad
- Propiedad SVG FESpecularLighting.surfaceScale
- Propiedad SVG FESpecularLighting.specularConstant
- SVG FESpecularLighting.kernelUnitLengthX Propiedad
- SVG FESpotLightElement.pointsAtY Propiedad
- SVG FESpotLightElement.pointsAtZ Propiedad
El siguiente ejemplo le dará una breve idea de cómo usar la propiedad SVG:
Ejemplo: En este ejemplo, veremos dos diagramas, uno será una elipse y otro será un círculo.
HTML
<!DOCTYPE html> <html> <body> <center> <h1 style="text-align: center; color:green;"> GeeksforGeeks </h1> <b> SVG Property </b> <div style="width: 600px;"> <div style="float: left; "> <svg width="200" height="200" xmlns="http://www.w3.org/2000/svg"> <ellipse cx="100" cy="100" rx="100" ry="60" id="ellipse" onclick="outputSize();"/> </svg> </div> <div style="float: right;"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 250 250" width="250" height="250"> <circle cx="150" cy="100" r="50" fill="green" id="gfg" onclick="clickCircle();"/> </svg> </div> </div> </center> </body> </html>
Producción:
Publicación traducida automáticamente
Artículo escrito por GeeksforGeeks-1 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA