마우스 오버시 레이어 출력~
마우스 오버시 레이어 보이게 하는 팁입니다.
버튼 하나에 레이어 하나 이렇게만 만들다가
지금 작업중인 사이트는 버튼이랑 설명레이어가 여러개가 되길래 만들어봤습니다.
<style type="text/css">
.help_btn{cursor:pointer;}
#help_div_0{display:none; position:absolute; left:0px; top:-210px;}
#help_div_1{display:none; position:absolute; left:80px; top:-210px;}
#help_div_2{display:none; position:absolute; left:185px; top:-210px;}
</style>
<div style="position:relative">
<input type="radio">라디오1 <img src="img/icon_help.gif" class="help_btn">
<input type="radio">라디오2 <img src="img/icon_help.gif" class="help_btn">
<input type="radio">라디오3 <img src="img/icon_help.gif" class="help_btn">
<div id="help_div_0">설명 1</div>
<div id="help_div_1">설명 2</div>
<div id="help_div_2">설명 3</div>
</div>
<script>
$(".help_btn").each(function(index) {
$(this).mouseover(function() {
$("#help_div_" + index).css("display", "block");
});
$(this).mouseout(function() {
$("#help_div_" + index).css("display", "none");
});
});
</script>
더 응용하면 레이어 위치까지도 제어할 수 있을 듯 하네요~
파이어폭스, ie8 만 테스트해봤습니다.
버튼 하나에 레이어 하나 이렇게만 만들다가
지금 작업중인 사이트는 버튼이랑 설명레이어가 여러개가 되길래 만들어봤습니다.
<style type="text/css">
.help_btn{cursor:pointer;}
#help_div_0{display:none; position:absolute; left:0px; top:-210px;}
#help_div_1{display:none; position:absolute; left:80px; top:-210px;}
#help_div_2{display:none; position:absolute; left:185px; top:-210px;}
</style>
<div style="position:relative">
<input type="radio">라디오1 <img src="img/icon_help.gif" class="help_btn">
<input type="radio">라디오2 <img src="img/icon_help.gif" class="help_btn">
<input type="radio">라디오3 <img src="img/icon_help.gif" class="help_btn">
<div id="help_div_0">설명 1</div>
<div id="help_div_1">설명 2</div>
<div id="help_div_2">설명 3</div>
</div>
<script>
$(".help_btn").each(function(index) {
$(this).mouseover(function() {
$("#help_div_" + index).css("display", "block");
});
$(this).mouseout(function() {
$("#help_div_" + index).css("display", "none");
});
});
</script>
더 응용하면 레이어 위치까지도 제어할 수 있을 듯 하네요~
파이어폭스, ie8 만 테스트해봤습니다.
댓글 2개
12년 전
감사합니다~~
takumi22
12년 전
감사합니다.
게시판 목록
개발자팁
개발과 관련된 유용한 정보를 공유하세요.
질문은 QA에서 해주시기 바랍니다.
질문은 QA에서 해주시기 바랍니다.
| 번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|---|
| 26 | MySQL |
아우겐나이스
|
21년 전 | 5831 | |
| 25 | JavaScript |
아우겐나이스
|
21년 전 | 5214 | |
| 24 | MySQL | 21년 전 | 7770 | ||
| 23 | MySQL | 21년 전 | 5067 | ||
| 22 | 기타 | 21년 전 | 8065 | ||
| 21 | 기타 | 21년 전 | 5970 | ||
| 20 | MySQL | 21년 전 | 6608 | ||
| 19 | MySQL | 21년 전 | 9362 | ||
| 18 | 기타 | 21년 전 | 6955 | ||
| 17 | MySQL | 21년 전 | 9485 | ||
| 16 | JavaScript | 21년 전 | 6732 | ||
| 15 | 기타 | 21년 전 | 4760 | ||
| 14 | 기타 | 21년 전 | 7670 | ||
| 13 | 기타 | 21년 전 | 5474 | ||
| 12 | JavaScript |
Recluse
|
21년 전 | 6492 | |
| 11 | 기타 |
아우겐나이스
|
21년 전 | 5429 | |
| 10 | 기타 |
Recluse
|
21년 전 | 5063 | |
| 9 | 기타 | 21년 전 | 5936 | ||
| 8 | MySQL | 21년 전 | 7462 | ||
| 7 | PHP | 21년 전 | 6939 | ||
| 6 | JavaScript | 21년 전 | 8172 | ||
| 5 | PHP | 21년 전 | 6200 | ||
| 4 | Linux | 21년 전 | 7067 | ||
| 3 | PHP | 21년 전 | 7313 | ||
| 2 | 기타 | 21년 전 | 5662 | ||
| 1 | JavaScript | 22년 전 | 7674 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기