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

344
Views
Este código de animación funciona bien, pero muestra errores en el código vs.

CSS Este código de animación funciona bien, pero muestra errores en el código vs.

 -moz-animation: spinoffPulse 10s infinite linear; -webkit-animation: spinoffPulse 10s infinite linear; @-moz-keyframes spinoffPulse { 0% { -moz-transform:rotate(0deg); } 100% { -moz-transform:rotate(360deg); } } @-webkit-keyframes spinoffPulse { 0% { -webkit-transform:rotate(0deg); } 100% { -webkit-transform:rotate(360deg); } }

El código Vs muestra un error en el código de animación anterior, pero funciona bien en la salida... Responda cuál es el problema en este código...

 html { --circle-width: 300px; } .circle { aspect-ratio: 1; width: var(--circleWidth); background-color: black; border-radius: 50%; position: relative; overflow: hidden; padding: .5rem; -moz-animation: spinoffPulse 10s infinite linear; -webkit-animation: spinoffPulse 10s infinite linear; } @-moz-keyframes spinoffPulse { 0% { -moz-transform:rotate(0deg); } 100% { -moz-transform:rotate(360deg); } } @-webkit-keyframes spinoffPulse { 0% { -webkit-transform:rotate(0deg); } 100% { -webkit-transform:rotate(360deg); } } #addNumBtn { position: absolute; top: 0; left: 0; } .numStyle { font-family: "roboto", sans-serif; }
about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

prueba este código. Espero que esto sea cierto

 html { --circle-width: 300px; } .circle { aspect-ratio: 1; width: var(--circleWidth); background-color: black; border-radius: 50%; position: relative; overflow: hidden; padding: .5rem; animation: spinoffPulse 10s infinite linear; -moz-animation: spinoffPulse 10s infinite linear; -webkit-animation: spinoffPulse 10s infinite linear; } @-moz-keyframes spinoffPulse { 0% { -moz-transform:rotate(0deg); } 100% { -moz-transform:rotate(360deg); } } @keyframes spinoffPulse { 0% { transform:rotate(0deg); } 100% { transform:rotate(360deg); } } @-webkit-keyframes spinoffPulse { 0% { -webkit-transform:rotate(0deg); } 100% { -webkit-transform:rotate(360deg); } } #addNumBtn { position: absolute; top: 0; left: 0; } .numStyle { font-family: "roboto", sans-serif; }
about 4 years ago · Juan Pablo Isaza Report
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!