HTML DOM 스타일 PerspectiveOrigin 속성은 HTML 문서에서 3D 요소가 x축 및 y축에 배치된 위치를 반환하고 수정합니다.
구문
다음은 구문입니다 -
1. PerspectiveOrigin 반환
object.perspectiveOrigin
2. perspectiveOrigin 수정
object.perspectiveOrigin = “value”
여기서 값은 -
일 수 있습니다.값 | 설명 |
---|---|
초기 | 이 속성 값을 기본값으로 설정합니다. |
상속 | 상위 요소에서 이 속성 값을 상속합니다. |
x축 y축 | 여기서 x축은 x축에서 뷰가 배치되는 위치를 나타냅니다. y축은 y축에서 뷰가 배치되는 위치를 나타냅니다. |
HTML DOM 스타일 PerspectiveOrigin 속성의 예를 살펴보겠습니다. -
예시
<!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>
출력
"PerspectiveOrigin 설정을 클릭합니다. ” 버튼을 사용하여 빨간색 의 원근감을 설정합니다. 상자.