Función transform.toString() de D3.js

La función transform.toString() en D3.js se usa para obtener una string que representa la transformación SVG correspondiente a esta transformación.

Sintaxis:

transform.toString()

Parámetros: Esta función no acepta ningún parámetro.

Valor de retorno: esta función devuelve un valor de string que se puede usar para establecer el comportamiento del zoom.

Los siguientes programas ilustran la función transform.toString() en D3.js.

Ejemplo 1:

HTML

<!DOCTYPE html> 
<html> 
<head> 
    <meta charset="utf-8">
  
    <script src=
        "https://d3js.org/d3.v4.min.js"> 
    </script>   
</head> 
      
<body> 
    <center>
        <h1 style="color: green;"> 
            Geeksforgeeks 
        </h1> 
        
        <h3>D3.js | transform.toString() Function</h3>
            
        <svg width="400" height="250"></svg>
            
        <script>
            var svg = d3.select("svg"),
                width = +svg.attr("width"),
                height = +svg.attr("height");
                   
            var radius = 30;    
            var circle = {x: 200, y: height /2 } ; 
                   
            var circle = svg.append("circle")
                .attr("cx", circle.x)
                .attr("cy", circle.y)
                .attr("r", radius)
                .attr("fill", "green");
                   
            // Defining zoom behaviour 
            var zoom_handler = d3.zoom()
                .on("zoom", zoom_actions);
               
            zoom_handler(circle);
               
            function zoom_actions(){
                var transform = d3.event.transform; 
  
                // Setting attribute using this method
                this.setAttribute("transform", 
                           transform.toString());
            }
   
        </script> 
    </center>
</body> 
    
</html>

Producción:

Ejemplo 2:

HTML

<!DOCTYPE html> 
<html> 
  
<head> 
    <meta charset="utf-8">
        
    <script src=
        "https://d3js.org/d3.v4.min.js"> 
    </script>
        
    <style>
        circle {
          opacity: 0.7;
          fill: #9a05a3;
        }
    </style>
</head> 
      
<body> 
    <center>
        <h1 style="color: green;"> 
            Geeksforgeeks 
        </h1> 
        
        <h3>D3.js | transform.toString() Function</h3>
            
        <svg></svg>
            
        <script>
            var transform = d3.zoomIdentity
                .translate(100, 0).scale(1);
  
            var zoom = d3.zoom().on("zoom", handleZoom);
                  
            var svg = d3.select("svg")
              .attr('width', 300)
              .attr('height', 250)
              .style("background", "#31c460")
              .call(zoom)                      
              .call(zoom.transform, transform);
            
            var zoomable = svg
              .append("g")
              .attr("class", "zoomable")
              .attr("transform", transform);   
                  
            var circles = zoomable.append('circle')
              .attr("id", "circles")
              .attr("cx", 50)
              .attr("cy", 125)
              .attr('r', 30);
            
            function handleZoom(){
              if (zoomable) {
                // Setting attribute using this method
                zoomable.attr("transform", 
                    d3.event.transform.toString());
              }
            };
        </script> 
    </center>
</body> 
    
</html>

Producción:

Publicación traducida automáticamente

Artículo escrito por SHUBHAMSINGH10 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 *