Usuario:RubiVGM

De Unión PokéPRO - Wiki
Ir a la navegaciónIr a la búsqueda

<script type="text/javascript">

  document.querySelectorAll('.stat-bar').forEach(function(bar) {

    var value = parseInt(bar.getAttribute('data-value'));  // Obtener el valor de la estadística desde el atributo data-value

    if (value < 50) {

      bar.style.backgroundColor = '#ff5959';  // Rojo para valores menores a 50

    } else if (value >= 50 && value < 100) {

      bar.style.backgroundColor = '#fae078';  // Naranja para valores entre 50 y 99

    } else {

      bar.style.backgroundColor = '#a7db8d';  // Verde para valores de 100 o más

    }

  });

</script>