Propiedad SVG window.toolbar

La propiedad SVG window.toolbar devuelve

Sintaxis:

var tb = window.toolbar

Valor devuelto: esta propiedad devuelve un objeto

Ejemplo 1: 

HTML

<!DOCTYPE html>
<html>
  
<body>
    <center>
        <h1>GeeksforGeeks</h1>
  
        <button onclick="get()">
            Click Here
        </button>
          
        <svg viewBox="0 0 10000 10000" 
            xmlns="http://www.w3.org/2000/svg">
              
            <script type="text/javascript">
                function get() {
                    var g = document.getElementById("g");
                    console.log(window.toolbar);
                }
            </script>
        </svg>
    </center>
</body>
  
</html>

Producción:

Ejemplo 2: 

HTML

<!DOCTYPE html>
<html>
  
<body>
    <center>
        <h1>GeeksforGeeks</h1>
  
        <button onclick="get()">
            Click Here
        </button>
          
        <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 = document.getElementById("g");
                    g.innerHTML = "Is it visible? : " +
                        window.toolbar.visible;
                }
            </script>
        </svg>
    </center>
</body>
  
</html>

Producción:

Navegadores compatibles:

  • Google Chrome
  • Borde
  • Firefox
  • Safari
  • Ópera
  • explorador de Internet

Publicación traducida automáticamente

Artículo escrito por taran910 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *