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

219
Visualizações
¿Es posible agregar un efecto de transición al cambiar la hoja de estilo de mi tema?

Hola, necesito saber cómo puedo agregar un efecto de transición cuando la hoja de estilo de mi tema cambia al hacer clic en el botón. El siguiente es mi código.

 document.addEventListener('DOMContentLoaded', () => { const themeStylesheet = document.getElementById('theme'); const storedTheme = localStorage.getItem('theme'); if (storedTheme) { themeStylesheet.href = storedTheme; } const themeToggle = document.getElementById('theme-toggley'); themeToggle.addEventListener('click', () => { // if it's light -> go dark if (themeStylesheet.href.includes('light')) { themeStylesheet.href = 'css/dark-theme.css'; } else { // if it's dark -> go light themeStylesheet.href = 'css/light-theme.css'; } // save the preference to localStorage localStorage.setItem('theme', themeStylesheet.href) }) })
 <link id="theme" rel="stylesheet" type="text/css" href="css/light-theme.css" /> <button id="theme-toggley">Light</button>

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

0

simplemente agregando un

 *{ transition-duration: 2s; }

trabajará

p.ej:-

 document.addEventListener('DOMContentLoaded', () => { var lightTheme = document.getElementById('light-theme'), darkTheme = document.getElementById("dark-theme"); var currentTheme; function setTheme (themeId){ currentTheme = themeId; document.querySelectorAll("link[rel=stylesheet].theme").forEach(link=>{ link.removeAttribute("rel"); }) document.querySelector(`#${themeId}`).setAttribute("rel","stylesheet"); } const storedTheme = localStorage.getItem('theme'); if(storedTheme){ if(storedTheme == "light-theme"){ setTheme("dark-theme") }else{ setTheme("light-theme") } }else{ setTheme("light-theme") } const themeToggle = document.getElementById('theme-toggley'); themeToggle.addEventListener('click', () => { // if it's light -> go dark if(currentTheme == "light-theme"){ setTheme("dark-theme") } else { // if it's dark -> go light setTheme("light-theme") } // save the preference to localStorage localStorage.setItem('theme',currentTheme) }) })
 *{ /*main*/ transition-duration: 2s; } button{ padding:10px ;border-radius:15px; font-size: 20px; }
 <link id="light-theme" type="text/css" class="theme" href="data:text/css;utf8,button{ color : black; background-color: white ;}" /> <link id="dark-theme" type="text/css" class="theme" href="data:text/css;utf8,button{ color : white; background-color: black ;}" /> <button id="theme-toggley">Light</button>

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