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

180
Views
filtro: invertir () todos los elementos de la página, excepto uno

Quiero invertir colores en toda la página web, excepto en un botón. Estoy usando el siguiente código para invertir colores en toda la página:

 html { scroll-behavior: smooth; background-color: var(--bgColor); filter: invert(var(--invertColors)); -moz-filter: invert(var(--invertColors)); -o-filter: invert(var(--invertColors)); -ms-filter: invert(var(--invertColors)); }

Tenga en cuenta que --invertColors es una variable CSS global y se establece en 1 o 0 .

El problema comienza con eso: tengo un objeto html que no quiero que se aplique el filtro:

 <button onclick="backgroundColors_Yellow()" class="background-yellow-button" >A</button>

Y la sección CSS correspondiente:

 .background-yellow-button { font-size: 25px; color: #fff70b; cursor: pointer; font-family: Raleway, sans-serif; background-color: #111; padding: 2px 8px 2px 8px; border-radius: 50%; border: 2px solid; border-color: #fff70b; outline: none; font-weight: 600; }

Intenté reemplazar la sección html de CSS con este código a continuación, pero no funciona (todavía todo está cambiando, incluido ese botón):

 html:not(.background-yellow-button) { scroll-behavior: smooth; background-color: var(--bgColor); filter: invert(var(--invertColors)); -moz-filter: invert(var(--invertColors)); -o-filter: invert(var(--invertColors)); -ms-filter: invert(var(--invertColors)); }

Intenté agregar una etiqueta de identificación a ese botón id="button-y" y seleccionar la sección html con html:not(#button-y) pero no funciona de ninguna manera.

Gracias por cualquier consejo, Mateusz.

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

Puede invertir todo el documento HTML y luego simplemente volver a invertir el botón:

 function invert() { const htmlElement = document.querySelector('html'); htmlElement.classList.toggle('invert'); }
 .invert { filter: invert(1); } .invert .do-not-invert { filter: invert(1); } .swap-color-button { background-color: yellow; font-size: 1.5em; }
 <body> <div class="wrapper"> <p style="color:red; font-size: 2em;">red</p> <p style="color:orange; font-size: 2em;">orange</p> <button class="swap-color-button do-not-invert" onclick="invert()">Invert Colors</button> <p style="color:green; font-size: 2em;">green</p> <p style="color:blue; font-size: 2em;">blue</p> <p style="color:purple; font-size: 2em;">purple</p> </div> </body>

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!