[제작 및 배포]
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년 전
감사합니다.
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 2330 | 16년 전 | 5069 | ||
| 2329 | 16년 전 | 2304 | ||
| 2328 | 16년 전 | 3404 | ||
| 2327 | 16년 전 | 2639 | ||
| 2326 | 16년 전 | 1556 | ||
| 2325 | 16년 전 | 5347 | ||
| 2324 | 16년 전 | 2464 | ||
| 2323 | 16년 전 | 5959 | ||
| 2322 | 16년 전 | 1936 | ||
| 2321 | 16년 전 | 4018 | ||
| 2320 | 16년 전 | 3025 | ||
| 2319 |
|
16년 전 | 2210 | |
| 2318 |
데니크레인
|
16년 전 | 2232 | |
| 2317 | 16년 전 | 4409 | ||
| 2316 | 16년 전 | 3291 | ||
| 2315 | 16년 전 | 2832 | ||
| 2314 | 16년 전 | 2958 | ||
| 2313 | 16년 전 | 2074 | ||
| 2312 | 16년 전 | 1762 | ||
| 2311 | 16년 전 | 1675 | ||
| 2310 | 16년 전 | 1394 | ||
| 2309 | 16년 전 | 1666 | ||
| 2308 | 16년 전 | 1902 | ||
| 2307 | 16년 전 | 1597 | ||
| 2306 |
|
16년 전 | 4847 | |
| 2305 | 16년 전 | 3822 | ||
| 2304 | 16년 전 | 1785 | ||
| 2303 | 16년 전 | 1529 | ||
| 2302 | 16년 전 | 2265 | ||
| 2301 | 16년 전 | 4528 | ||
| 2300 | 16년 전 | 3541 | ||
| 2299 | 16년 전 | 2575 | ||
| 2298 | 16년 전 | 4329 | ||
| 2297 | 16년 전 | 3201 | ||
| 2296 | 16년 전 | 1351 | ||
| 2295 |
|
16년 전 | 1374 | |
| 2294 |
|
16년 전 | 2036 | |
| 2293 | 16년 전 | 1881 | ||
| 2292 | 16년 전 | 2557 | ||
| 2291 | 16년 전 | 2230 | ||
| 2290 | 16년 전 | 1363 | ||
| 2289 | 16년 전 | 4391 | ||
| 2288 | 16년 전 | 1472 | ||
| 2287 | 16년 전 | 1779 | ||
| 2286 | 16년 전 | 2198 | ||
| 2285 |
|
16년 전 | 3832 | |
| 2284 |
|
16년 전 | 2729 | |
| 2283 |
|
16년 전 | 1483 | |
| 2282 | 16년 전 | 4010 | ||
| 2281 |
|
16년 전 | 1391 | |
| 2280 | 16년 전 | 1574 | ||
| 2279 | 16년 전 | 1234 | ||
| 2278 | 16년 전 | 1712 | ||
| 2277 | 16년 전 | 1611 | ||
| 2276 | 16년 전 | 1622 | ||
| 2275 | 16년 전 | 1423 | ||
| 2274 | 16년 전 | 2179 | ||
| 2273 | 16년 전 | 1815 | ||
| 2272 |
|
16년 전 | 1960 | |
| 2271 | 16년 전 | 2176 | ||
| 2270 |
a1system
|
16년 전 | 1466 | |
| 2269 | 16년 전 | 2303 | ||
| 2268 | 16년 전 | 2255 | ||
| 2267 | 16년 전 | 4526 | ||
| 2266 |
|
16년 전 | 1293 | |
| 2265 | 16년 전 | 1047 | ||
| 2264 |
잠자리똥꾸멍
|
16년 전 | 2008 | |
| 2263 |
태양의서쪽
|
16년 전 | 1970 | |
| 2262 |
태양의서쪽
|
16년 전 | 1511 | |
| 2261 |
태양의서쪽
|
16년 전 | 2037 | |
| 2260 |
|
16년 전 | 2269 | |
| 2259 | 16년 전 | 1382 | ||
| 2258 | 16년 전 | 1735 | ||
| 2257 | 16년 전 | 1921 | ||
| 2256 | 16년 전 | 1010 | ||
| 2255 | 16년 전 | 1687 | ||
| 2254 | 16년 전 | 1402 | ||
| 2253 | 16년 전 | 1906 | ||
| 2252 |
freedays
|
16년 전 | 1322 | |
| 2251 | 16년 전 | 2198 | ||
| 2250 | 16년 전 | 1878 | ||
| 2249 | 16년 전 | 5863 | ||
| 2248 | 16년 전 | 1909 | ||
| 2247 | 16년 전 | 3683 | ||
| 2246 | 16년 전 | 1465 | ||
| 2245 |
|
16년 전 | 1752 | |
| 2244 |
|
16년 전 | 2068 | |
| 2243 | 16년 전 | 2609 | ||
| 2242 | 16년 전 | 2304 | ||
| 2241 | 16년 전 | 2753 | ||
| 2240 | 16년 전 | 2988 | ||
| 2239 | 16년 전 | 3009 | ||
| 2238 |
|
16년 전 | 1818 | |
| 2237 |
|
16년 전 | 1538 | |
| 2236 |
|
16년 전 | 1409 | |
| 2235 | 16년 전 | 1723 | ||
| 2234 | 16년 전 | 1203 | ||
| 2233 | 16년 전 | 1959 | ||
| 2232 |
|
16년 전 | 1731 | |
| 2231 | 16년 전 | 1605 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기