Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> HTML

พื้นหลังสไตล์ HTML DOM คุณสมบัติสี


คุณสมบัติ backgroundColor ใช้สำหรับการตั้งค่าหรือคืนค่าสีพื้นหลังสำหรับองค์ประกอบ เราสามารถระบุค่าตามชื่อมาตรฐาน rgb(), rgba(), hsl() หรือ hsla()

ไวยากรณ์

ต่อไปนี้เป็นไวยากรณ์สำหรับ −

การตั้งค่าคุณสมบัติ backgroundColor -

object.style.backgroundColor = "color|transparent

คุณค่า

ค่าคุณสมบัติข้างต้นมีคำอธิบายดังนี้ −

Sr.No ค่า &คำอธิบาย
1 สี
สำหรับกำหนดสีพื้นหลัง
2 โปร่งใส
ตั้งค่าสีพื้นหลังให้โปร่งใส กล่าวคือสามารถเห็นเนื้อหาพื้นฐานได้ เป็นค่าเริ่มต้น

ตัวอย่าง

ให้เราดูตัวอย่างคุณสมบัติ backgroundColor -

<!DOCTYPE html>
<html>
<head>
<style>
   #DIV1{
      background-color: rgba(10,122,102,0.1);
   }
</style>
<script>
   function changeBackColor(){
      document.getElementById("DIV1").style.backgroundColor="rgba(1,200,55,0.5)";
      document.getElementById("Sample").innerHTML="The background color is now changed";
   }
</script>
</head>
<body>
<div id="DIV1">Duis tincidunt urna a interdum consectetur. Pellentesque nec pretium ante.
In nisl magna, vestibulum non vulputate vel, feugiat ac tellus. Sed tincidunt id leo at mollis.
Praesent pellentesque purus vitae scelerisque gravida. Pellentesque pulvinar scelerisque sem,
at euismod sapien tristique et.</div>
<p>Change the above div background color by clicking the below button</p>
<button onclick="changeBackColor()">CHANGE COLOR</button>
<p id="Sample"></p>
</body>
</html>

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

พื้นหลังสไตล์ HTML DOM คุณสมบัติสี

เมื่อคลิกปุ่ม CHANGE CLIP -

พื้นหลังสไตล์ HTML DOM คุณสมบัติสี