Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

279
Views
La animación de fotogramas clave CSS deja Halo en WebKit

Esto ocurre principalmente en Safari móvil, pero también se puede reproducir en el escritorio:

Después de un tiempo de ejecutarse en segundo plano en una pestaña o aplicación diferente, volver a esta animación cargada da como resultado halos cuadrados que resaltan los personajes en movimiento individuales. Una actualización soluciona esto, pero ¿cómo puedo hacer que deje de suceder en primer lugar? Consulte el archivo adjunto para ver el problema y el código completo a continuación.

Cualquier ayuda sería increíblemente apreciada. ♡

Animación de fotogramas clave CSS Halo

 <html lang="en" > <head> <meta charset="UTF-8"> <title>Test</title> <style> html{ height:100%; width:100%; background:#FFF; } body { height:100%; width:100%; display:flex; flex-direction: column; align-items:center; justify-content:center; gap:1rem; overflow:hidden; } .animated-text { font: 12.0vmin/1 "Helvetica"; letter-spacing: 0.3rem; } .animated-text span.letter{ display:inline-block; } .animated-text.tilted span.letter{ animation: 1s tilted forwards ease-in-out infinite; } @keyframes tilted { 0%{ transform: rotateZ(-15deg); } 50%{ transform: rotateZ(15deg); } 100%{ transform: rotateZ(-15deg); } } </style> </head> <body> <!-- partial:index.partial.html --> <span class="animated-text tilted"> STACK </span> <span class="animated-text tilted"> OVERFLOW </span> <!-- partial --> <script>var animatedText = document.querySelectorAll(".animated-text"); function animate(element){ var textArray = element.innerText.split(""); element.firstChild.remove(); var elArray = textArray.map( (letter,index)=>{ if(letter==" ") letter = '&nbsp;'; var el = document.createElement("span"); el.className = "letter"; el.innerHTML = letter; el.style.animationDelay = index/(textArray.length)+"s"; element.appendChild(el); return el; } ); element.innerHtml = elArray; } Array.from(animatedText).map(animate)</script> </body> </html>

https://jsfiddle.net/illustrography/pL5d321c/3/

about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!