¿Cómo colocar un div en coordenadas específicas?

Dado un documento HTML, la tarea es colocar un <div> en coordenadas específicas en la página web usando JavaScript. vamos a discutir algunas técnicas.

Acercarse:

  • Primero configurando la propiedad style.position del elemento.
  • Luego establezca las propiedades style.top, style.left del elemento que queremos posicionar.

Ejemplo 1: en este ejemplo, el DIV se coloca al final del documento.

<!DOCTYPE HTML>
<html>
  
<head>
    <title>
        JavaScript 
      | Position a DIV in a specific coordinates.
    </title>
    <style>
        #GFG_DIV {
            background: green;
            height: 100px;
            width: 200px;
            margin: 0 auto;
            color: white;
        }
    </style>
</head>
  
<body style="text-align:center;" id="body">
    <h1 style="color:green;">  
            GeeksForGeeks  
        </h1>
    <p id="GFG_UP" 
       style="font-size: 19px;
              font-weight: bold;">
    </p>
    <div id="GFG_DIV">
        This is Div box.
    </div>
    <br>
    <button onClick="GFG_Fun()">
        click here
    </button>
    <p id="GFG_DOWN" 
       style="color: green; 
              font-size: 24px; 
              font-weight: bold;">
    </p>
    <script>
        var el_up = 
            document.getElementById(
              "GFG_UP");
        var el_down = 
            document.getElementById(
              "GFG_DOWN");
        el_up.innerHTML = 
          "Click on button to change"+
          " the position of the DIV.";
  
        function GFG_Fun() {
            var x = 370;
            var y = 250;
            var el = document.getElementById('GFG_DIV');
            el.style.position = "absolute";
            el.style.left = x + 'px';
            el.style.top = y + 'px';
            el_down.innerHTML = 
              "Position of element is changed.";
        }
    </script>
</body>
  
</html>

Producción:

  • Antes de hacer clic en el botón:
  • Después de hacer clic en el botón:

Ejemplo 2: en este ejemplo, el DIV se coloca en la esquina superior izquierda del documento.

<!DOCTYPE HTML>
<html>
  
<head>
    <title>
        JavaScript | 
      Position a DIV in a specific coordinates.
    </title>
    <style>
        #GFG_DIV {
            background: green;
            height: 50px;
            width: 80px;
            margin: 0 auto;
            color: white;
        }
    </style>
</head>
  
<body style="text-align:center;"
      id="body">
    <h1 style="color:green;">  
            GeeksForGeeks  
        </h1>
    <p id="GFG_UP" 
       style="font-size: 19px;
              font-weight: bold;">
    </p>
    <div id="GFG_DIV">
        This is Div box.
    </div>
    <br>
    <button onClick="GFG_Fun()">
        click here
    </button>
    <p id="GFG_DOWN" 
       style="color: green; 
              font-size: 24px;
              font-weight: bold;">
    </p>
    <script>
        var el_up = 
            document.getElementById("GFG_UP");
        var el_down = 
            document.getElementById("GFG_DOWN");
        el_up.innerHTML = 
          "Click on button to change the position of the DIV.";
  
        function GFG_Fun() {
            var x = 0;
            var y = 0;
            var el = document.getElementById('GFG_DIV');
            el.style.position = "absolute";
            el.style.left = x + 'px';
            el.style.top = y + 'px';
            el_down.innerHTML = "Position of element is changed.";
        }
    </script>
</body>
  
</html>

Producción:

  • Antes de hacer clic en el botón:
  • Después de hacer clic en el botón:

Publicación traducida automáticamente

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