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

มุมมอง HTML DOM สไตล์คุณสมบัติแหล่งกำเนิด


คุณสมบัติเปอร์สเปคทีฟสไตล์ HTML DOM ส่งกลับและแก้ไขตำแหน่งที่องค์ประกอบ 3 มิติวางอยู่บนแกน x และแกน y ในเอกสาร HTML

ไวยากรณ์

ต่อไปนี้เป็นไวยากรณ์ -

1. การกลับมาของเปอร์สเปคทีฟOrigin

object.perspectiveOrigin

2. การปรับเปลี่ยนเปอร์สเปคทีฟกำเนิด

object.perspectiveOrigin = “value”

ในที่นี้ ค่าสามารถเป็น −

ค่า คำอธิบาย
เริ่มต้น ตั้งค่าคุณสมบัตินี้เป็นค่าเริ่มต้น
สืบทอด รับค่าคุณสมบัตินี้จากองค์ประกอบหลัก
แกน x แกน y ที่นี่แกน x แสดงถึงตำแหน่งที่วางมุมมองบนแกน x แกน y แสดงถึงตำแหน่งที่วางมุมมองบนแกน y

ให้เราดูตัวอย่างของ HTML DOM Styleเปอร์สเปคทีฟแหล่งกำเนิด -

ตัวอย่าง

<!DOCTYPE html>
<html>
<style>
   body {
      color: #000;
      height: 100vh;
      background-color: #8BC6EC;
      background-image: linear-gradient(135deg, #8BC6EC 0%, #9599E2 100%);
      perspective: 100px;
   }
   .btn {
      background: #db133a;
      border: none;
      height: 2rem;
      border-radius: 2px;
      width: 40%;
      display: block;
      color: #fff;
      outline: none;
      cursor: pointer;
      margin: 1rem auto;
   }
   .box {
      text-align: center;
      width: 200px;
      height: 200px;
      background-color: #db133a;
      transform: rotateX(25deg);
      margin: 2rem auto;
   }
</style>
<body>
<h1 style="text-align:center">DOM Style perspectiveOrigin Property Demo</h1>
<div class='box'></div>
<button class="btn" onclick="set()">Set PerspectiveOrigin</button>
<script>
   function set() {
      document.body.style.perspectiveOrigin = "20% 50%";
   }
</script>
</body>
</html>

ผลลัพธ์

มุมมอง HTML DOM สไตล์คุณสมบัติแหล่งกำเนิด

คลิกที่ “ตั้งค่า PerspectiveOrigin ” เพื่อกำหนดแหล่งกำเนิดเปอร์สเปคทีฟของ สีแดง กล่อง.

มุมมอง HTML DOM สไตล์คุณสมบัติแหล่งกำเนิด