Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

107
Vistas
object moving with javascript

i want to move my "robot" div where i clicked , so i wrote a javascript code :

document.addEventListener('mousedown', function(event) {
  let robot = document.querySelector('.robot');
  robot.clientTop = event.pageX + 'px';
  robot.clientLeft = event.pageY + 'px';
});
.robot {
  background-color: rgb(10, 0, 143);
  height: 120px;
  width: 120px;
  border-radius: 15px;
  margin: 25px auto;
}
<div class="robot">
  <span class="eyes_left">
    
                </span>
  <span class="eyes_right">
    
                </span>
  <div class="hands">

  </div>
  <div class="battery">
    <div class="charge">

    </div>
    <div class="charge">

    </div>
    <div class="charge">

    </div>
    <div class="charge">

    </div>

  </div>
</div>

but it doesn't work and don't say any errors whats the problem ??

about 4 years ago · Juan Pablo Isaza
3 Respuestas
Responde la pregunta

0

Unfortunatly you cannot set the clientTop in the way you have tried. You need to use css to adjust the position. Give the element position: absolute and then update the top and left position in the javascript.

document.addEventListener('mousedown', function(event) {
  let robot = document.querySelector('.robot');
  robot.style.top = event.pageY + 'px';
  robot.style.left = event.pageX + 'px';
});
.robot {
  background-color: rgb(10, 0, 143);
  height: 120px;
  width: 120px;
  border-radius: 15px;
  margin: 25px auto;
  position: absolute;
}
<div class="robot">
  <span class="eyes_left">
    
                </span>
  <span class="eyes_right">
    
                </span>
  <div class="hands">

  </div>
  <div class="battery">
    <div class="charge">

    </div>
    <div class="charge">

    </div>
    <div class="charge">

    </div>
    <div class="charge">

    </div>

  </div>
</div>

about 4 years ago · Juan Pablo Isaza Denunciar

0

Use this method.

let robot = document.querySelector('.robot');

document.addEventListener('mousedown' , function (event){
    let y = event.pageY + 'px';
    let x = event.pageX + 'px';
    robot.setAttribute('style', `top:  ${y}; left:  ${x}`);
    console.log(`Position Updated, top:  ${y}; left:  ${x}`)
});
.robot{
    background-color: rgb(10, 0, 143);
    height:120px;
    width:120px;
    border-radius:15px;
    position: relative;
}
<div class="robot">
            <span class="eyes_left">

            </span>
            <span class="eyes_right">

            </span>
            <div class="hands">

            </div>
            <div class="battery">
                <div class="charge">

                </div>
                <div class="charge">
                    
                </div>
                <div class="charge">
                    
                </div>
                <div class="charge">
                    
                </div>
                
            </div>
    </div>

about 4 years ago · Juan Pablo Isaza Denunciar

0

https://developer.mozilla.org/en-US/docs/Web/API/Element/clientTop https://developer.mozilla.org/en-US/docs/Web/API/Element/clientLeft

clientTop and clientLeft are read only properties

about 4 years ago · Juan Pablo Isaza Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda