Propiedad SVG Window.history

La propiedad SVG Window.history devuelve una referencia al objeto Historial. Sintaxis: var e = window.history Valor devuelto: esta propiedad devuelve una referencia al objeto Historial. Ejemplo 1: En este ejemplo usaremos el evento onclick. html <!DOCTYPE html> <html>   <body>     <center>         <h1>GeeksforGeeks</h1>           <button onclick=»get()»>             Get History         </button>                   <br><br>         <div id=»g»></div>                   <svg viewBox=»0 … Continue reading «Propiedad SVG Window.history»

Propiedad de documento de ventana SVG

La propiedad SVG Window.document Sintaxis: var object = window.document Valor de retorno: esta propiedad Ejemplo 1: HTML <!DOCTYPE html> <html>    <body>     <svg viewBox=»0 0 1000 1000″          xmlns=»http://www.w3.org/2000/svg»>                    <circle cx=»200″ cy=»200″ r=»50″></circle>                    <script type=»text/javascript»>             console.log(window.document);         </script>     </svg> </body>    </html> Producción: Ejemplo 2: HTML <!DOCTYPE html> <html>    <body>     <svg viewBox=»0 0 1000 … Continue reading «Propiedad de documento de ventana SVG»

SVG RectElement.rx Propiedad

La propiedad SVG RectElement.rx se usa para ordenar Sintaxis: RectElement.rx Valores devueltos: esta propiedad devuelve un Ejemplo 1:  HTML <!DOCTYPE html> <html>    <body>     <h1 style=»color: green»>         GeeksforGeeks     </h1>            <h3>SVG RectElement.rx property</h3>            <svg width=»300″ height=»300″          xmlns=»http://www.w3.org/2000/svg»>            <rect width=»100″ height=’190′              fill=»green» id=»gfg»              rx=20 ry=10 />                        <script>             var g = document.getElementById(«gfg»);             console.log(g.rx)         </script> … Continue reading «SVG RectElement.rx Propiedad»

Propiedad SVG SpecularLighting.kernelUnitLengthY

La propiedad SVG SpecularLighting.kernelUnitLengthY devuelve el objeto SVGAnimatedNumber correspondiente al componente kernelUnitLengthY del elemento FESpecularLighting.kernelUnitLengthY. Sintaxis: var a = FESpecularLighting.kernelUnitLengthY Valor devuelto: esta propiedad devuelve el objeto SVGAnimatedNumber correspondiente al componente kernelUnitLengthY del elemento FESpecularLighting.kernelUnitLengthY. Ejemplo 1:  <!DOCTYPE html> <html>    <body>     <svg height=»200″ width=»200″          viewBox=»0 0 220 220″>            <filter id=»filter»>                <feSpecularLighting in=»BackgroundImage» … Continue reading «Propiedad SVG SpecularLighting.kernelUnitLengthY»

Propiedad SVG Event.defaultPrevented

La propiedad SVG Event.defaultPrevented devuelve un valor booleano que indica si la llamada a Event.preventDefault() canceló el evento. Sintaxis: var defaultWasPrevented = event.defaultPrevented Valor devuelto: esta propiedad devuelve el valor booleano del elemento de evento. Ejemplo 1: En este ejemplo, usaremos el evento onclick. <!DOCTYPE html> <html>    <body>     <svg viewBox=»0 0 1000 1000″          xmlns=»http://www.w3.org/2000/svg»> … Continue reading «Propiedad SVG Event.defaultPrevented»

SVG FEOffset.dy Propiedad

La propiedad SVG FEOffset.dy devuelve el objeto SVGAnimatedNumber correspondiente al componente dy del elemento FEOffset. Sintaxis: let offset_prop = FEOffset.dy Valor devuelto: Esta propiedad devuelve el objeto SVGAnimatedNumber correspondiente al componente dy del elemento FEOffset. Ejemplo 1:  HTML <!DOCTYPE html> <html>    <body>     <svg width=»400″ height=»400″>         <defs>             <filter id=»filter2″ x=»0″ y=»0″                  width=»150%» height=»150%»>                                    <feOffset … Continue reading «SVG FEOffset.dy Propiedad»

Propiedad SVG Window.isSecureContext

La propiedad SVG Window.isSecureContext Sintaxis: var isSecure = window.isSecureContext Valor de retorno: esta propiedad Ejemplo 1: En este ejemplo, usaremos el evento onclick. HTML <!DOCTYPE html> <html>    <body>     <center>         <h1>GeeksforGeeks</h1>            <button onclick=»get()»>             Check         </button>                    <br><br>         <div id=»g»></div>            <svg viewBox=»0 0 1000 1000″              xmlns=»http://www.w3.org/2000/svg»>                            <script type=»text/javascript»>                 function get() {                     var g … Continue reading «Propiedad SVG Window.isSecureContext»

Propiedad SVG Window.event

La propiedad SVG Window.event Sintaxis: var e = window.event Valor de retorno: esta propiedad Ejemplo 1: En este ejemplo usaremos el evento onclick. HTML <!DOCTYPE html> <html>    <body>     <center>         <h1>GeeksforGeeks</h1>            <button onclick=»get()»>             Get event         </button>                    <br><br>         <div id=»g»></div>            <svg viewBox=»0 0 1000 1000″              xmlns=»http://www.w3.org/2000/svg»>                            <script type=»text/javascript»>                 function get() {                     console.log(window.event); … Continue reading «Propiedad SVG Window.event»

Propiedad SVG CircleElement.cx

La propiedad SVG CircleElement.cx e Sintaxis: CircleElement.cx Valor devuelto: Esta propiedad devuelve el Ejemplo 1:  <!DOCTYPE html> <html>    <body>     <svg xmlns=»http://www.w3.org/2000/svg»         viewBox=»0 0 250 250″ width=»250″          height=»250″>                    <circle cx=»100″ cy=»100″ r=»50″              fill=»green» id=»gfg»              onclick=»clickCircle();» />                    <script>             var g = document.getElementById(«gfg»);             console.log(g.cx)         </script>     </svg> </body>    </html> Producción: Ejemplo 2:  HTML <!DOCTYPE html> … Continue reading «Propiedad SVG CircleElement.cx»

SVG FEDropShadow.stdDeviationX Propiedad

La propiedad SVG FEDropShadow.stdDeviationX devuelve el objeto SVGAnimatedNumber correspondiente al componente stdDeviationX del elemento FEDisplacementMap.stdDeviationX. Sintaxis: var a = FEDropShadow.stdDeviationX Valor devuelto: esta propiedad devuelve el objeto SVGAnimatedNumber correspondiente al componente stdDeviationX del elemento FEDisplacementMap.stdDeviationX. Ejemplo 1:  HTML <!DOCTYPE html> <html>    <body>     <svg width=»200″ height=»200″>         <defs>             <filter id=»drop_shadow»                  filterUnits=»objectBoundingBox»                  x=»-50%» y=»-60%» width=»250%»                  height=»250%»>    … Continue reading «SVG FEDropShadow.stdDeviationX Propiedad»