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

195
Vistas
How do I move an element in a straight line with a start button in JavaScript?

Basically, let's say I have a box created in HTML/CSS.

<style type='text/css'>
    #box {
      width: 48px;
      height: 48px;
      background-color: black;
      position: absolute;
      left: 280px;
      top: 180px;
    }
  </style>

Style does not matter all that much.

How do I get that box to start on the left side of the page and press a start button that brings it to about the middle of the page WITHOUT having to press a stop button using JavaScript?

I know how to move it with arrow keys, a continuous movement, or a start and then stop button, but not how to just change the position.

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

0

Consider the following.

$(function() {
  $("button").click(function() {
    $("#box").animate({
      left: $(window).width() - $("#box").width()
    });
  });
});
#box {
  width: 48px;
  height: 48px;
  background-color: black;
  position: absolute;
  left: 280px;
  top: 180px;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<div id="box"></div>
<button>Go</button>

You can also do this with style without animation.

#box.moved {
  left: calc(100% - 48px);
}
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