Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

163
Vistas
How to highlight specific title in html when I used js for marque
<!-- javascript -->
const middle = document.getElementById("middle");
const middle1 = document.getElementById("middle1");

animate(middle);
animate(middle1);
  
function animate(element) {
    let elementWidth = element.offsetWidth;
    let parentWidth = element.parentElement.offsetWidth;
    let flag = 0;
  
    setInterval(() => {
        element.style.marginLeft = --flag + "px";
  
        if (elementWidth == -flag) {
            flag = parentWidth;
        }
    }, 10);
}

<!-- this is html itself -->

    <div id="main">
        <p class="middle" id="middle">
            Welcome to my Spectacular Show!
        </p>
        <p class="middle" id="middle1">
            Time for the show is 6:59PM EST on May 28,2022
        </p>

    </div>

This is js I have for creating marque in my HTML(have assignment), I need to figure out the way how to highlight the time and date only! Please help:)

about 4 years ago · Juan Pablo Isaza
1 Respuestas
Responde la pregunta

0

You can add them inside strong tag

<div id="main">
  <p class="middle" id="middle">Welcome to my Spectacular Show!</p>
  <p class="middle" id="middle1">
    Time for the show is <strong>6:59PM EST </strong> on
    <strong> May 28,2022</strong>
  </p>
</div>

about 4 years ago · Juan Pablo Isaza Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda