목차
clip 예제 - clip 속성값 설정
clip 정의
clip 구문
clip 예제 - clip 속성값 반환
clip 예제 - clip 속성값 설정
<style>
img {position: absolute; top: 50px; width:185px; height:39px;}
</style>
<img id="hz" src="https://i.imgur.com/WfW5mBC.png">
<button type="button" onclick="clipRect()">Clip image</button>
<button type="button" onclick="clipAuto()">Unclip image</button>
<script>
function clipRect() {
document.getElementById("hz").style.clip = "rect(0px 172px 39px 33px)";
}
function clipAuto() {
document.getElementById("hz").style.clip = "auto";
}
</script>
결과보기
clip 정의
CSS clip 속성 설정/반환.
clip 구문
clip 속성의 속성값 반환
object .style.clip
clip 속성의 속성값 설정
object .style.clip = "auto|rect(top right bottom left )|initial|inherit"
[속성값]
CSS clip 속성 참고
clip 예제 - clip 속성값 반환
<button type="button" onclick="homzzang()">클릭</button><br>
<img id="hz" style="position:absolute;clip:rect(0,172px,39px,33px) ;" src="https://i.imgur.com/WfW5mBC.png">
<script>
function homzzang() {
alert(document.getElementById("hz").style.clip);
}
</script>
결과보기
※ 결과값: rect(0px, 172px, 39px, 33px)
주소 복사
랜덤 이동