Download Source Code Aplikasi

Style.Background

Saturday, October 26th, 2019 - Style DOM

Properti style.background ialah bentuk shorthand untuk mendeklarasikan style.backgroundColor, style.backgroundImage, style.backgroundRepeat, style.backgroundAttachment, dan style.backgroundPosition dalam satu deklarasi.

Sintaks:

obj.style.background = value;

Nilainya:

  • sub-style.background
    style.backgroundColor, style.backgroundImage, style.backgroundRepeat, style.backgroundAttachment, dan style.backgroundPosition yang dipisahkan spasi.
  • inherit.

Contoh 1:

<HTML> <HEAD> <TITLE>style.background</TITLE> </HEAD> <BODY> <SCRIPT TYPE="text/javascript"> var bodyElem = document.getElementsByTagName("body")[0]; bodyElem.style.background = "#FFF url(picture.gif) no-repeat center"; </SCRIPT> </BODY> </HTML>

Contoh 2:

<HTML> <HEAD> <TITLE>style.background</TITLE> <STYLE TYPE="text/css"> #mydiv { width: 200px; height: 200px; border: solid green 2px; } </STYLE> </HEAD> <BODY> <DIV ID="mydiv"></DIV> <SCRIPT TYPE="text/javascript"> var divElem = document.getElementById("mydiv"); divElem.style.background = "#FFF url(picture.gif) no-repeat center"; </SCRIPT> </BODY> </HTML>
Demikian yang dapat kami share kepada sobat source code aplikasi pada kesempatan ini, semoga dapat bermanfaat dan bisa menjadi referensi pemrograman bagi anda. Jangan lupa like Fan Page kami, dan SUBSCRIBE Channel Youtube kami untuk dapatkan update source code aplikasi terbaru.
Download Source Code Aplikasi
Style.Background | Ahmad Code | 4.5