Empresas
Empregos
  • Sobre nós
  • Soluções
    • Publicação de vagas
      Publique sua vaga e receba candidatos qualificados em 48h.
    • Avaliações de candidatos
      Mais de 500 testes técnicos e psicológicos, mais anti-fraude.
    • Headhunting
      Busca executiva personalizada do início ao fim.
    • Folha de Pagamento + EOR
      Dispersão de folha e EOR em mais de 15 países da LATAM.
  • Preços
  • Empregos

0

133
Visualizações
transition doesn't work editing while window onload

I'm trying to move this square to right 100px after clicking on it with js, I've set the transition to 1s, but it doesn't work

window.onload = function(){
    var square = document.querySelector(".square");        
    square.onclick = function(){
        square.style.right = "100px";
    };
};
.square {
    position: absolute;
    background-color: red;
    width: 500px;
    height: 500px;
    transition: 1s;
}
<div class="square">
</div> 

about 4 years ago · Juan Pablo Isaza
1 Respostas
Responde à pergunta

0

CSS won't animate things from auto to px.
Since right is not defined, it's defaulting to auto.

window.onload = function(){
    var square = document.querySelector(".square");        
    square.onclick = function(){
        square.style.right = "100px";
    };
};
.square {
    position: absolute;
    background-color: red;
    width: 500px;
    height: 500px;
    right: 0;
    transition: 1s;
}
<div class="square">
</div>

However, if you want to animate it without setting right at the beginning, you can also use translate.

window.onload = function(){
    var square = document.querySelector(".square");        
    square.onclick = function(){
        square.style.transform = "translateX(100px)";
    };
};
.square {
    position: absolute;
    background-color: red;
    width: 500px;
    height: 500px;
    transition: 1s;
}
<div class="square">
</div>

about 4 years ago · Juan Pablo Isaza Relatório
Responde à pergunta
Encontrar trabalhos remotos

Descubra a nova forma de encontrar um emprego!

melhores empregos
Principais categorias de trabalho
Empresas
Postar vaga Preços Comercial
Jurídico
Termos e Condições Política de privacidade
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomende algumas ofertas para mim
Preciso de ajuda