HTML DOM Marquesina bgColor Propiedad

La propiedad HTML DOM Marquee bgColor se utiliza para establecer o devolver el valor del atributo bgcolor de la etiqueta  <marquee> .

Sintaxis:

Devuelve la propiedad marquee bgColor .

marqueeObject.bgColor;

Establece la propiedad marquesina bgColor .

marqueeObject.bgColor="colorname/hex_number"

Valor de la propiedad: yo

  • color_name: Establece el color de fondo usando el nombre del color. Por ejemplo, «rojo».
    hex_number: Establece el color de fondo usando el código hexadecimal del color. Por ejemplo, “#0000ff”.

Nota: HTML5 no admite el atributo bgcolor de HTML Marquee.

Ejemplo 1: El siguiente código HTML devuelve la propiedad Marquee bgcolor

HTML

<!DOCTYPE html>
<html>
     
    <body style="text-align:center;">
     
        <h1 style="color:green;">
            GeeksforGeeks
        </h1>
         
        <h2>DOM Marquee bgColor Property</h2>
         
        <marquee id="marqueeID" direction="right"
                 behavior="slide" loop="3" bgcolor="green">
            GeeksforGeeks:A computer Science Portal for Geeks
        </marquee>       
        <br><br>
         
        <button onclick="btnClick()">
           Return background color of Marquee tag
        </button>
        <p id ="paraID"></p>
 
 
        <script>
            function btnClick() {
                var txt = document.getElementById("marqueeID").bgColor;
                document.getElementById("paraID").innerHTML = txt;
            }
        </script>   
    </body>
</html>

Producción:

HTML DOM Marquee bgColor Property

HTML DOM Marquesina bgColor Propiedad

Ejemplo 2: El siguiente código HTML establece la propiedad Marquee bgColor

HTML

<!DOCTYPE html>
<html>
         
    <body style="text-align:center;">
     
        <h1 style="color:green;">
            GeeksforGeeks
        </h1>
         
        <h2>DOM Marquee bgColor Property</h2>
         
        <marquee id="marqueeID" direction="right"
                 behavior="slide" loop="3" bgcolor="green">
            GeeksforGeeks:A computer Science Portal for Geeks
        </marquee>       
        <br><br>
         
        <button onclick="btnClick()">
          Change background color of Marquee tag
        </button>
        <p id ="paraID"></p>
 
 
        <script>
            function btnClick() {
                var txt = document.getElementById(
                    "marqueeID").bgColor = "dodgerblue";
 
                document.getElementById("paraID").innerHTML = txt;
            }
        </script>   
    </body>
</html>

Producción:

HTML DOM Marquee bgColor Property

HTML DOM Marquesina bgColor Propiedad

Navegadores compatibles: 

  • Google Chrome 1.0
  • Borde 12.0
  • Firefox 65.0
  • Internet Explorer 2.0
  • Ópera 7.2
  • Safari 1.2 

Publicación traducida automáticamente

Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *