일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- work6.kr
- 웹퍼블리셔
- plugin
- 커스터마이징
- CSS
- 프로그래머
- 쇼핑몰제작
- 홈페이지
- 튜닝
- 3D프린터
- 웹에이전시
- jQuery Plugin
- 플러그인
- 웹퍼블리싱
- 쇼핑몰구축
- 웹개발자
- 쇼핑몰
- 사이트제작
- JQuery
- 안드로이드
- 홈페이지구축
- 워크식스
- Today
- Total
그냥 개발자 블로그
[워크식스] 라디오버튼에 스타일 적용하기 - designRadio_1.0.js 본문
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="designRadio_1.0.js"></script>
<link href="http://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" />
<style>
label{
color:#fff;
}
label.radio{
width: 12px;
height: 12px;
display: inline-block;
border: 1px solid #e2e2e2;
border-radius: 50%;
vertical-align: top;
margin-top: 0px;
margin-right:3px;
background: #fff;
}
label.radio i{
display:none;
color:#111;
}
input[type=radio]:checked + label i{
display:block;
}
</style>
<script>
$(function(){
$('body').designRadio();
});
</script>
<body>
<label><input type="radio" name="test" value="" checked>선택1</label>
<label><input type="radio" name="test" value="">선택2</label>
</body>
1. 제이쿼리가 필요합니다.
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="designRadio_1.0.js"></script>
<link href="http://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" />
<style>
label{
color:#fff;
}
label.radio{
width: 12px;
height: 12px;
display: inline-block;
border: 1px solid #e2e2e2;
border-radius: 50%;
vertical-align: top;
margin-top: 0px;
margin-right:3px;
background: #fff;
}
label.radio i{
display:none;
color:#111;
}
input[type=radio]:checked + label i{
display:block;
}
</style>
<script>
$(function(){
$('body').designRadio();
});
</script>
<body>
<label><input type="radio" name="test" value="" checked>선택1</label>
<label><input type="radio" name="test" value="">선택2</label>
</body>
2. 다운로드 받은 플러그인을 설치 합니다. ( 플러그인은 워크식스 홈페이지에서 다운로드 받으실 수 있습니다. )
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="designRadio_1.0.js"></script>
<link href="http://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" />
<style>
label{
color:#fff;
}
label.radio{
width: 12px;
height: 12px;
display: inline-block;
border: 1px solid #e2e2e2;
border-radius: 50%;
vertical-align: top;
margin-top: 0px;
margin-right:3px;
background: #fff;
}
label.radio i{
display:none;
color:#111;
}
input[type=radio]:checked + label i{
display:block;
}
</style>
<script>
$(function(){
$('body').designRadio();
});
</script>
<body>
<label><input type="radio" name="test" value="" checked>선택1</label>
<label><input type="radio" name="test" value="">선택2</label>
</body>
3. FontAwesome css를 연결해 줍니다.
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="designRadio_1.0.js"></script>
<link href="http://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" />
<style>
label{
color:#fff;
}
label.radio{
width: 12px;
height: 12px;
display: inline-block;
border: 1px solid #e2e2e2;
border-radius: 50%;
vertical-align: top;
margin-top: 0px;
margin-right:3px;
background: #fff;
}
label.radio i{
display:none;
color:#111;
}
input[type=radio]:checked + label i{
display:block;
}
</style>
<script>
$(function(){
$('body').designRadio();
});
</script>
<body>
<label><input type="radio" name="test" value="" checked>선택1</label>
<label><input type="radio" name="test" value="">선택2</label>
</body>
4. 기본 스타일과 html 태그를 작성 합니다.
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="designRadio_1.0.js"></script>
<link href="http://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" />
<style>
label{
color:#fff;
}
label.radio{
width: 12px;
height: 12px;
display: inline-block;
border: 1px solid #e2e2e2;
border-radius: 50%;
vertical-align: top;
margin-top: 0px;
margin-right:3px;
background: #fff;
}
label.radio i{
display:none;
color:#111;
}
input[type=radio]:checked + label i{
display:block;
}
</style>
<script>
$(function(){
$('body').designRadio();
});
</script>
<body>
<label><input type="radio" name="test" value="" checked>선택1</label>
<label><input type="radio" name="test" value="">선택2</label>
</body>
5. 페이지가 열릴때 자동으로 실행되게 함수를 작성 합니다.
6. 플러그인은 워크식스에서 만들어졌습니다. 프로그램 소스 다운로드는 워크식스 홈페이지를 이용해 주세요.
'소식 > 플러그인소식' 카테고리의 다른 글
[워크식스] select 에 css 적용하기 - designSelect_1.4.js (0) | 2018.06.18 |
---|---|
[워크식스] 스크롤 위치에따라 이미지 차례로 불러오기 -highImageLoader_1.0.js (0) | 2018.04.05 |
[워크식스] 체크박스에 스타일 적용하기 - designCheckbox_1.0.js (0) | 2017.12.28 |
[워크식스] select 에 css 적용하기 - designSelect_1.3.js (0) | 2017.12.21 |
touchmovemenu.js 모바일웹 메뉴에 슬라이드 기능 추가 해주는 플러그인 (0) | 2017.03.28 |