일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 웹에이전시
- 웹디자인
- 안드로이드
- PHP
- JQuery
- 웹퍼블리셔
- 사이트제작
- 쇼핑몰제작
- 웹퍼블리싱
- plugin
- CSS
- 웹디자이너
- 홈페이지구축
- 홈페이지제작
- 웹개발자
- 고도몰
- 제이쿼리
- 3D프린터
- 개발자
- 프로그래머
- 튜닝
- 플러그인
- 홈페이지
- 워크식스
- 커스터마이징
- 쇼핑몰
- work6.kr
- jQuery Plugin
- 쇼핑몰구축
- 포트폴리오
- Today
- Total
그냥 개발자 블로그
designSelect.js 플러그인 - select box 스타일 적용 (크로스브라우징 가능) 본문
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="/js/designSelect.js"></script>
<style>
body{font-size:12px;}
select{
width:160px;
height:26px;
}
.designSelect{
position:relative;
display:inline-block;
cursor:pointer;
border:1px solid #ccc;
}
.designSelect .box{
}
.designSelect .option_container{
position:absolute;
display:none;
left:0px;
height:0;
border:1px solid #ccc;
}
.designSelect .option_container .option{
background:#fff;
}
.designSelect .option_container .option:hover{
background:#f1f1f1;
}
</style>
<script>
$(function(){
$('body').designSelect();
});
</script>
<body>
<select name="option">
<option value='1'>옵션1</option>
<option value='2'>옵션2</option>
</select>
</body>
1. 제이쿼리를 설치가 필요 합니다.
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="/js/designSelect.js"></script>
<style>
body{font-size:12px;}
select{
width:160px;
height:26px;
}
.designSelect{
position:relative;
display:inline-block;
cursor:pointer;
border:1px solid #ccc;
}
.designSelect .box{
}
.designSelect .option_container{
position:absolute;
display:none;
left:0px;
height:0;
border:1px solid #ccc;
}
.designSelect .option_container .option{
background:#fff;
}
.designSelect .option_container .option:hover{
background:#f1f1f1;
}
</style>
<script>
$(function(){
$('body').designSelect();
});
</script>
<body>
<select name="option">
<option value='1'>옵션1</option>
<option value='2'>옵션2</option>
</select>
</body>
2. 다운로드 받은 플러그인을 설치 합니다. ( 플러그인은 워크식스 홈페이지에서 다운로드 받으실 수 있습니다. )
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="/js/designSelect.js"></script>
<style>
body{font-size:12px;}
select{
width:160px;
height:26px;
}
.designSelect{
position:relative;
display:inline-block;
cursor:pointer;
border:1px solid #ccc;
}
.designSelect .box{
}
.designSelect .option_container{
position:absolute;
display:none;
left:0px;
height:0;
border:1px solid #ccc;
}
.designSelect .option_container .option{
background:#fff;
}
.designSelect .option_container .option:hover{
background:#f1f1f1;
}
</style>
<script>
$(function(){
$('body').designSelect();
});
</script>
<body>
<select name="option">
<option value='1'>옵션1</option>
<option value='2'>옵션2</option>
</select>
</body>
2. select 태그 및 적용 시킬 스타일을 작성 합니다.
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="/js/designSelect.js"></script>
<style>
body{font-size:12px;}
select{
width:160px;
height:26px;
}
.designSelect{
position:relative;
display:inline-block;
cursor:pointer;
border:1px solid #ccc;
}
.designSelect .box{
}
.designSelect .option_container{
position:absolute;
display:none;
left:0px;
height:0;
border:1px solid #ccc;
}
.designSelect .option_container .option{
background:#fff;
}
.designSelect .option_container .option:hover{
background:#f1f1f1;
}
</style>
<script>
$(function(){
$('body').designSelect();
});
</script>
<body>
<select name="option">
<option value='1'>옵션1</option>
<option value='2'>옵션2</option>
</select>
</body>
3. 페이지가 열릴때 자동으로 실행되게 함수를 작성 합니다.
4. 플러그인은 워크식스 홈페이지에서 만나보실 수 있습니다.
copyright ⓒ 2017. 워크식스
'소식 > 플러그인소식' 카테고리의 다른 글
slidebanner.js 플러그인 - 슬라이드 배너 플러그인 (3) | 2016.08.02 |
---|---|
thinScrollbar.js 플러그인 - 스크롤바 스타일 바꾸기 (0) | 2016.06.07 |
제이쿼리 플러그인 만들때 결과 리턴 받기 (callback) (0) | 2016.04.27 |
pageScroll.js - 원페이지 사이트에 스크롤 부드럽게 움직이는 페이지 (0) | 2016.04.13 |
[jquery] 전체 레이어 팝업 띄우기 플러그인 1.3 (0) | 2016.03.05 |