일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- 안드로이드개발
- Form Stuff
- android
- 인기있는 블로그 만들기
- 안드로이드폰
- 스카이 안드로이드폰 시리우스 K양 동영상
- 구글 안드로이드
- 하루한마디영어
- 하루 한마디 영어
- 안드로이드
- sky 시리우스폰
- 스카이 안드로이드폰 시리우스
- objective-c
- 안드로이드 2.0 개발
- 안드로이드 개발 강좌
- 안드로이드 개발 2.0 강좌
- 아이폰 바탕화면
- 안드로이드 개발 2.0
- 구글 안드로이드 개발
- 스마트폰 배경화면
- 영어
- 안드로이드 개발
- 안드로이드 배경화면
- MapView
- 안드로이드 바탕화면
- 안드로이드2.0
- 아이폰 배경화면
- 안드로이드2.0개발
- 구글안드로이드
- SKY 시리우스
- Today
- Total
moozi
아코디언 본문
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>jQuery - Accordion</title>
<!-- jQuery ------------------------------------------->
<script
src="https://code.jquery.com/jquery-1.11.1.min.js"
></script>
<style>
.header{
width:250px;
height: 35px;
background-color: #dddddd;
}
.header span{padding: 5px;}
.header:hover{
background-color: #cccccc;
}
.content{
width:250px;
height: 0px;
background-color: #eeeeee;
overflow: hidden;
transition: 0.3s;
}
.content p{padding: 5px;}
</style>
<script>
$(document).ready(function(){
// $(".header").click(function(){
// if($(this).next().css("height")=="90px"){
// $(this).next().css("height","0px");
// }else{
// $(this).next().css("height","90px");
// }
// });
$(".header").eq(0).click(function(){
if($(".content").eq(0).css("height")=="90px"){
$(".content").eq(0).css("height","0px");
}else{
$(".content").eq(0).css("height","90px");
}
});
// $(".header").each(function(index,item){
// $(".header").eq(index).click(function(){
// if($(".content").eq(index).css("height")=="90px"){
// $(".content").eq(index).css("height","0px");
// }else{
// $(".content").eq(index).css("height","90px");
// }
// });
// });
});
</script>
</head>
<body>
<div id="accordion">
<div class="header"><span>jQuery</span></div>
<div class="content">
<p>jQuery is javascript libray.</p>
</div>
<div class="header"><span>jQuery</span></div>
<div class="content">
<p>jQuery is javascript libray.</p>
</div>
</div>
</body>
</html>
'TIS_2017 > 응용sw_2기' 카테고리의 다른 글
Bootstrap연습문제01 (0) | 2017.08.16 |
---|---|
jQuery연습문제02 (0) | 2017.08.11 |
jQuery연습문제01 (0) | 2017.08.10 |
javascript연습문제03 (0) | 2017.08.09 |
8/29 join.html join2.html (0) | 2017.08.09 |