[제작 및 배포]
http://www.rinix.co.kr
주인장 RINIX
[패치내용]
1. Mozilla, Safari, Opera 에서도 사용가능.
2. 그래프 롤오버시 애니메이션 추가.
3. 설명창 위치 교정.
[사용용도]
rx_graph 는 jQuery UI 이로서 세로형 또는 가로형 그레프 제작에 사용합니다.
간단하게 테이블과 레이어만의 설정으로 쉽게 그레프를 그릴수 있으며 초기 한번에 한해서 에니메이션을 실행합니다.
[사용방법]
1. script 설정
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script src="rx_graph.js"></script>
2. CSS 설정
<style>
.rx_bar {
width:14px;
height:1px;
clear: left;
float: left;
margin-top: 2px;
margin-right: 5px;
margin-left: 5px;
background-image: url(bar.gif);
}
#rx_win {
font-family: "굴림", "돋움";
font-size: 11px;
line-height: 18px;
color: #666666;
background-color: #FAFAFA;
padding: 5px;
border: 1px solid #666666;
position: absolute;
}
</style>
.rx_bar 는 그레프 스타일시트입니다. 혹 명칭이 맘에 안들어 바꾸시지 마세요 rx_graph 는 스타일시트이름으로 그래프레이어를 구분합니다.
#rx_win 는 그래프 롤오버시 나타나는 창의 스타일시트입니다.
3. 그래프설정
<div class="rx_bar" alt="높이" caption="설명창내용"></div>
alt 는 그래프의 높이이며 caption은 그래프 롤오버시 설명내용입니다.
http://www.rinix.co.kr
주인장 RINIX
[패치내용]
1. Mozilla, Safari, Opera 에서도 사용가능.
2. 그래프 롤오버시 애니메이션 추가.
3. 설명창 위치 교정.
[사용용도]
rx_graph 는 jQuery UI 이로서 세로형 또는 가로형 그레프 제작에 사용합니다.
간단하게 테이블과 레이어만의 설정으로 쉽게 그레프를 그릴수 있으며 초기 한번에 한해서 에니메이션을 실행합니다.
[사용방법]
1. script 설정
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script src="rx_graph.js"></script>
2. CSS 설정
<style>
.rx_bar {
width:14px;
height:1px;
clear: left;
float: left;
margin-top: 2px;
margin-right: 5px;
margin-left: 5px;
background-image: url(bar.gif);
}
#rx_win {
font-family: "굴림", "돋움";
font-size: 11px;
line-height: 18px;
color: #666666;
background-color: #FAFAFA;
padding: 5px;
border: 1px solid #666666;
position: absolute;
}
</style>
.rx_bar 는 그레프 스타일시트입니다. 혹 명칭이 맘에 안들어 바꾸시지 마세요 rx_graph 는 스타일시트이름으로 그래프레이어를 구분합니다.
#rx_win 는 그래프 롤오버시 나타나는 창의 스타일시트입니다.
3. 그래프설정
<div class="rx_bar" alt="높이" caption="설명창내용"></div>
alt 는 그래프의 높이이며 caption은 그래프 롤오버시 설명내용입니다.
rx_graph[1.01].js
$(document).ready(function(){
// 애니매이션 설정
/*$("div.rx_bar").animate({
height: $(this).attr("alt") + "px",
opacity: 1
}, 1500 );*/
for(i=0; i<$("div.rx_bar").length; i++){
$("div.rx_bar").eq(i).animate({
//세로형
height: $("div.rx_bar").eq(i).attr("alt") + "px",
//가로형
//width: $("div.rx_bar").eq(i).attr("alt") + "px",
opacity: 1
}, 2000 );
}
// 설명창
$("div.rx_bar").hover(function(e){
i = $("div.rx_bar").index(this);
rx_over(i);
$("body").append("<div id='rx_win'>"+ $(this).attr("caption") +"</div>");
rx_win_w = $("#rx_win").innerWidth(true) / 2;
rx_win_h = $("#rx_win").innerHeight(true) + 20;
$("#rx_win").css({"top":(e.pageY - rx_win_h) + "px", "left":(e.pageX - rx_win_w) + "px"}).show();
}, function(){
$("#rx_win").remove();
});
});
function rx_over(i){
pr = $("div.rx_bar").eq(i).attr("alt")*0.2;
$("div.rx_bar").eq(i).animate({
//세로형
height: $("div.rx_bar").eq(i).attr("alt") - pr + "px",
//가로형
//width: $("div.rx_bar").eq(i).attr("alt") - pr + "px",
opacity: 0.75
}, 250 )
.animate({
//세로형
height: $("div.rx_bar").eq(i).attr("alt") + "px",
//가로형
//width: $("div.rx_bar").eq(i).attr("alt") + "px",
opacity: 1
}, 500 );
}
// 애니매이션 설정
/*$("div.rx_bar").animate({
height: $(this).attr("alt") + "px",
opacity: 1
}, 1500 );*/
for(i=0; i<$("div.rx_bar").length; i++){
$("div.rx_bar").eq(i).animate({
//세로형
height: $("div.rx_bar").eq(i).attr("alt") + "px",
//가로형
//width: $("div.rx_bar").eq(i).attr("alt") + "px",
opacity: 1
}, 2000 );
}
// 설명창
$("div.rx_bar").hover(function(e){
i = $("div.rx_bar").index(this);
rx_over(i);
$("body").append("<div id='rx_win'>"+ $(this).attr("caption") +"</div>");
rx_win_w = $("#rx_win").innerWidth(true) / 2;
rx_win_h = $("#rx_win").innerHeight(true) + 20;
$("#rx_win").css({"top":(e.pageY - rx_win_h) + "px", "left":(e.pageX - rx_win_w) + "px"}).show();
}, function(){
$("#rx_win").remove();
});
});
function rx_over(i){
pr = $("div.rx_bar").eq(i).attr("alt")*0.2;
$("div.rx_bar").eq(i).animate({
//세로형
height: $("div.rx_bar").eq(i).attr("alt") - pr + "px",
//가로형
//width: $("div.rx_bar").eq(i).attr("alt") - pr + "px",
opacity: 0.75
}, 250 )
.animate({
//세로형
height: $("div.rx_bar").eq(i).attr("alt") + "px",
//가로형
//width: $("div.rx_bar").eq(i).attr("alt") + "px",
opacity: 1
}, 500 );
}
[이 게시물은 관리자님에 의해 2011-10-31 16:55:28 jQuery에서 이동 됨]
댓글 1개
13년 전
감사합니다.
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 8230 | 9년 전 | 154 | ||
| 8229 | 9년 전 | 127 | ||
| 8228 |
커네드커네드
|
9년 전 | 176 | |
| 8227 | 9년 전 | 222 | ||
| 8226 | 9년 전 | 236 | ||
| 8225 | 9년 전 | 214 | ||
| 8224 | 9년 전 | 221 | ||
| 8223 | 9년 전 | 197 | ||
| 8222 |
|
9년 전 | 262 | |
| 8221 | 9년 전 | 168 | ||
| 8220 | 9년 전 | 201 | ||
| 8219 | 9년 전 | 170 | ||
| 8218 | 9년 전 | 215 | ||
| 8217 |
star3840
|
9년 전 | 184 | |
| 8216 | 9년 전 | 250 | ||
| 8215 | 9년 전 | 194 | ||
| 8214 | 9년 전 | 310 | ||
| 8213 | 9년 전 | 263 | ||
| 8212 | 9년 전 | 173 | ||
| 8211 | 9년 전 | 348 | ||
| 8210 | 9년 전 | 346 | ||
| 8209 | 9년 전 | 426 | ||
| 8208 | 9년 전 | 308 | ||
| 8207 | 9년 전 | 321 | ||
| 8206 |
|
9년 전 | 269 | |
| 8205 | 9년 전 | 244 | ||
| 8204 | 9년 전 | 231 | ||
| 8203 | 9년 전 | 298 | ||
| 8202 | 9년 전 | 214 | ||
| 8201 | 9년 전 | 259 | ||
| 8200 | 9년 전 | 271 | ||
| 8199 | 9년 전 | 287 | ||
| 8198 | 9년 전 | 250 | ||
| 8197 | 9년 전 | 239 | ||
| 8196 | 9년 전 | 655 | ||
| 8195 | 9년 전 | 249 | ||
| 8194 | 9년 전 | 361 | ||
| 8193 | 9년 전 | 269 | ||
| 8192 | 9년 전 | 280 | ||
| 8191 | 9년 전 | 232 | ||
| 8190 | 9년 전 | 223 | ||
| 8189 | 9년 전 | 284 | ||
| 8188 | 9년 전 | 215 | ||
| 8187 | 9년 전 | 222 | ||
| 8186 | 9년 전 | 224 | ||
| 8185 | 9년 전 | 389 | ||
| 8184 | 9년 전 | 182 | ||
| 8183 | 9년 전 | 395 | ||
| 8182 | 9년 전 | 257 | ||
| 8181 | 9년 전 | 215 | ||
| 8180 | 9년 전 | 787 | ||
| 8179 | 9년 전 | 552 | ||
| 8178 | 9년 전 | 422 | ||
| 8177 |
kiplayer
|
9년 전 | 416 | |
| 8176 | 9년 전 | 450 | ||
| 8175 | 9년 전 | 341 | ||
| 8174 | 9년 전 | 330 | ||
| 8173 | 9년 전 | 421 | ||
| 8172 | 9년 전 | 300 | ||
| 8171 | 9년 전 | 263 | ||
| 8170 | 9년 전 | 379 | ||
| 8169 |
커네드커네드
|
9년 전 | 331 | |
| 8168 | 9년 전 | 412 | ||
| 8167 | 9년 전 | 402 | ||
| 8166 | 9년 전 | 309 | ||
| 8165 | 9년 전 | 251 | ||
| 8164 | 9년 전 | 383 | ||
| 8163 | 9년 전 | 385 | ||
| 8162 | 9년 전 | 374 | ||
| 8161 | 9년 전 | 392 | ||
| 8160 |
|
9년 전 | 605 | |
| 8159 | 9년 전 | 543 | ||
| 8158 | 9년 전 | 340 | ||
| 8157 | 9년 전 | 450 | ||
| 8156 | 9년 전 | 344 | ||
| 8155 | 9년 전 | 342 | ||
| 8154 |
00년생용띠
|
9년 전 | 672 | |
| 8153 | 9년 전 | 310 | ||
| 8152 |
|
9년 전 | 493 | |
| 8151 | 9년 전 | 489 | ||
| 8150 | 9년 전 | 598 | ||
| 8149 |
Jangfolk
|
9년 전 | 456 | |
| 8148 | 9년 전 | 276 | ||
| 8147 | 9년 전 | 455 | ||
| 8146 | 9년 전 | 539 | ||
| 8145 | 9년 전 | 494 | ||
| 8144 | 9년 전 | 459 | ||
| 8143 | 9년 전 | 292 | ||
| 8142 | 9년 전 | 505 | ||
| 8141 | 9년 전 | 454 | ||
| 8140 | 9년 전 | 1016 | ||
| 8139 | 9년 전 | 365 | ||
| 8138 |
전갈자리남자
|
9년 전 | 467 | |
| 8137 | 9년 전 | 504 | ||
| 8136 | 9년 전 | 836 | ||
| 8135 |
|
9년 전 | 873 | |
| 8134 |
PlayPixel
|
9년 전 | 609 | |
| 8133 |
|
9년 전 | 519 | |
| 8132 | 9년 전 | 559 | ||
| 8131 | 9년 전 | 916 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기