Propiedades de trazo SVG
SVG ofrece una amplia gama de propiedades de trazo. En este capítulo vamos a ver lo siguiente:
- carrera
- accidente cerebrovascular de ancho
- accidente cerebrovascular-linecap
- accidente cerebrovascular-dasharray
Todas las propiedades de trazo se pueden aplicar a cualquier tipo de líneas, el texto y contornos de elementos como un círculo.
SVG accidente cerebrovascular Propiedad
La propiedad de trazo define el color de una línea, texto o soporte de un elemento:
Aquí está el código SVG:
Ejemplo
<svg height="80" width="300">
<g fill="none">
<path stroke="red" d="M5 20 l215 0" />
<path stroke="black" d="M5 40 l215 0" />
<path stroke="blue" d="M5 60 l215 0" />
</g>
</svg>
Inténtalo tú mismo " accidente cerebrovascular ancho de SVG Propiedad
La propiedad de trazo de anchura define el grosor de una línea, texto o soporte de un elemento:
Aquí está el código SVG:
Ejemplo
<svg height="80" width="300">
<g fill="none" stroke="black">
<path stroke-width="2" d="M5 20 l215 0" />
<path stroke-width="4" d="M5 40 l215 0" />
<path stroke-width="6" d="M5 60 l215 0" />
</g>
</svg>
Inténtalo tú mismo " SVG accidente cerebrovascular-linecap Propiedad
La propiedad de trazo-linecap define diferentes tipos de terminaciones a un trazado abierto:
Aquí está el código SVG:
Ejemplo
<svg height="80" width="300">
<g fill="none" stroke="black" stroke-width="6">
<path stroke-linecap="butt" d="M5 20 l215 0" />
<path stroke-linecap="round" d="M5 40 l215 0" />
<path stroke-linecap="square" d="M5 60 l215 0" />
</g>
</svg>
Inténtalo tú mismo " SVG accidente cerebrovascular-dasharray Propiedad
La propiedad de trazo-dasharray se utiliza para crear líneas de puntos:
Aquí está el código SVG:
Ejemplo
<svg height="80" width="300">
<g fill="none" stroke="black" stroke-width="4">
<path stroke-dasharray="5,5" d="M5 20 l215 0" />
<path stroke-dasharray="10,10" d="M5 40 l215 0" />
<path stroke-dasharray="20,10,5,5,5,10" d="M5 60 l215 0" />
</g>
</svg>
Inténtalo tú mismo "