Sintaxis:
fr="radius"
Valores de atributos:
- longitud: Longitud en la que queremos establecer el radio.
- porcentaje: Porcentaje en el que queremos establecer el radio.
Usaremos el atributo fr para establecer el radio del elemento.
Ejemplo 1:
HTML
<!DOCTYPE html> <html> <body> <svg viewBox="0 0 600 200" xmlns="http://www.w3.org/2000/svg"> <defs> <radialGradient id="gradient1" cx="0.3" cy="0.3" r="0.5" fx="0.55" fy="0.35" fr="20%"> <stop offset="0%" stop-color="red" /> <stop offset="100%" stop-color="green" /> </radialGradient> </defs> <circle cx="100" cy="100" r="100" fill="url(#gradient1)" /> </svg> </body> </html>
Producción:
Ejemplo 2:
HTML
<!DOCTYPE html> <html> <body> <svg viewBox="0 0 600 200" xmlns="http://www.w3.org/2000/svg"> <defs> <radialGradient id="gradient1" cx="0.5" cy="0.5" r="0.5" fx="0.35" fy="0.35" fr="25%"> <stop offset="0%" stop-color="white" /> <stop offset="100%" stop-color="green" /> </radialGradient> </defs> <circle cx="100" cy="100" r="100" fill="url(#gradient1)" /> </svg> </body> </html>
Producción: