英[ˈˈɛndeks] 美[ˈˈˈnˌdɛks]
n.index;<number>index;instruction;sign
vt.index...;index...;[경제학] 생활 지수(임금, 물가, etc.)
vi.[Mechanics] Transposition
3인칭 단수: indexes 복수: indices indexes 현재 분사: indexing 과거 시제: indexed 과거 분사: indexed
자바스크립트 zIndex 속성 통사론
기능: 요소의 스택 순서를 설정합니다.
구문: Object.style.zIndex=auto|number
참고: 요소는 음수 Z-색인 속성 값을 가질 수 있습니다. Z-색인은 위치가 지정된 요소(예: position:absolute;)에서만 작동합니다.
자바스크립트 zIndex 속성 예
<html> <head> <style type="text/css"> #img1 { position:absolute; left:0px; top:0px; z-index:-1 } </style> <script type="text/javascript"> function changeStackOrder() { document.getElementById("img1").style.zIndex="1"; } </script> </head> <body> <h1>This is a Heading</h1> <img id="img1" src="http://img.php.cn/upload/article/000/005/656/5af270fd37755429.jpg" width="100" height="180"> <p>Default z-index is 0. Z-index -1 has lower priority.</p> <input type="button" onclick="changeStackOrder()" value="Change stack order" /> </body> </html>
인스턴스 실행 »
온라인 인스턴스를 보려면 "인스턴스 실행" 버튼을 클릭하세요