<style>
.g_width, .g_height {width: 100%;}
.g_width td:first-child { width: 10%}
.g_width div { background-color: blue; height: 20px}
.g_height tr:first-child td {height: 300px; vertical-align: bottom}
.g_height div { background-color: blue; width: 20px}
</style>
<table id="graph1" class="g_width">
<tr><td>국어</td><td></td></tr>
<tr><td>영어</td><td></td></tr>
<tr><td>수학</td><td></td></tr>
</table>
<table id="graph2" class="g_height">
<tr><td></td><td></td><td></td></tr>
<tr><td>국어</td><td>영어</td><td>수학</td></tr>
</table>
<script>
function Graph(label) {
this.obj = document.getElementById(label);
this.begin = []; this.end = []; this.div = []; this.vertexes = [];
}
Graph.prototype.display = function(i, way) {
var _this = this, timer= [];
timer[i] = setInterval(function () {
if (_this.begin[i] >= _this.end[i]) clearInterval(timer[i]);
if (way == 'w')
_this.div[i].style.width = _this.begin[i] + '%';
else
_this.div[i].style.height = _this.begin[i] + '%';
_this.begin[i] +=1;
}, 30);
};
Graph.prototype.draw = function(way) {
way == 'w' ? this.width() :this.height();
for (var i=0; i<this.vertexes.length; i++) {
this.begin[i] = 1;
this.end[i] = this.vertexes[i];
this.display(i, way);
}
}
Graph.prototype.width = function() {
for (var i=0; i<this.obj.rows.length; i++) {
var cell = this.obj.rows[i].cells[1];
this.div[i] = document.createElement('div');
cell.appendChild(this.div[i]);
}
}
Graph.prototype.height = function(l) {
for (var i=0; i<this.vertexes.length; i++) {
var cell = this.obj.rows[0].cells[i];
this.div[i] = document.createElement('div');
cell.appendChild(this.div[i]);
}
}
var graph1 = new Graph('graph1');
graph1.vertexes = [10, 90, 40];
graph1.draw('w');
var graph2= new Graph('graph2');
graph2.vertexes = [50, 20, 80];
graph2.draw('h');
</script>
댓글 1개
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 8230 | 9년 전 | 102 | ||
| 8229 | 9년 전 | 103 | ||
| 8228 |
커네드커네드
|
9년 전 | 149 | |
| 8227 | 9년 전 | 181 | ||
| 8226 | 9년 전 | 201 | ||
| 8225 | 9년 전 | 182 | ||
| 8224 | 9년 전 | 174 | ||
| 8223 | 9년 전 | 156 | ||
| 8222 |
|
9년 전 | 230 | |
| 8221 | 9년 전 | 136 | ||
| 8220 | 9년 전 | 162 | ||
| 8219 | 9년 전 | 130 | ||
| 8218 | 9년 전 | 179 | ||
| 8217 |
star3840
|
9년 전 | 151 | |
| 8216 | 9년 전 | 207 | ||
| 8215 | 9년 전 | 164 | ||
| 8214 | 9년 전 | 262 | ||
| 8213 | 9년 전 | 210 | ||
| 8212 | 9년 전 | 128 | ||
| 8211 | 9년 전 | 298 | ||
| 8210 | 9년 전 | 302 | ||
| 8209 | 9년 전 | 373 | ||
| 8208 | 9년 전 | 274 | ||
| 8207 | 9년 전 | 270 | ||
| 8206 |
|
9년 전 | 226 | |
| 8205 | 9년 전 | 215 | ||
| 8204 | 9년 전 | 177 | ||
| 8203 | 9년 전 | 268 | ||
| 8202 | 9년 전 | 178 | ||
| 8201 | 9년 전 | 220 | ||
| 8200 | 9년 전 | 216 | ||
| 8199 | 9년 전 | 246 | ||
| 8198 | 9년 전 | 209 | ||
| 8197 | 9년 전 | 200 | ||
| 8196 | 9년 전 | 590 | ||
| 8195 | 9년 전 | 200 | ||
| 8194 | 9년 전 | 322 | ||
| 8193 | 9년 전 | 208 | ||
| 8192 | 9년 전 | 238 | ||
| 8191 | 9년 전 | 187 | ||
| 8190 | 9년 전 | 187 | ||
| 8189 | 9년 전 | 240 | ||
| 8188 | 9년 전 | 176 | ||
| 8187 | 9년 전 | 183 | ||
| 8186 | 9년 전 | 184 | ||
| 8185 | 9년 전 | 360 | ||
| 8184 | 9년 전 | 142 | ||
| 8183 | 9년 전 | 355 | ||
| 8182 | 9년 전 | 214 | ||
| 8181 | 9년 전 | 176 | ||
| 8180 | 9년 전 | 746 | ||
| 8179 | 9년 전 | 521 | ||
| 8178 | 9년 전 | 368 | ||
| 8177 |
kiplayer
|
9년 전 | 371 | |
| 8176 | 9년 전 | 406 | ||
| 8175 | 9년 전 | 274 | ||
| 8174 | 9년 전 | 282 | ||
| 8173 | 9년 전 | 375 | ||
| 8172 | 9년 전 | 240 | ||
| 8171 | 9년 전 | 222 | ||
| 8170 | 9년 전 | 332 | ||
| 8169 |
커네드커네드
|
9년 전 | 293 | |
| 8168 | 9년 전 | 359 | ||
| 8167 | 9년 전 | 364 | ||
| 8166 | 9년 전 | 273 | ||
| 8165 | 9년 전 | 211 | ||
| 8164 | 9년 전 | 346 | ||
| 8163 | 9년 전 | 332 | ||
| 8162 | 9년 전 | 341 | ||
| 8161 | 9년 전 | 349 | ||
| 8160 |
|
9년 전 | 542 | |
| 8159 | 9년 전 | 478 | ||
| 8158 | 9년 전 | 295 | ||
| 8157 | 9년 전 | 418 | ||
| 8156 | 9년 전 | 300 | ||
| 8155 | 9년 전 | 288 | ||
| 8154 |
00년생용띠
|
9년 전 | 635 | |
| 8153 | 9년 전 | 270 | ||
| 8152 |
|
9년 전 | 452 | |
| 8151 | 9년 전 | 453 | ||
| 8150 | 9년 전 | 551 | ||
| 8149 |
Jangfolk
|
9년 전 | 394 | |
| 8148 | 9년 전 | 224 | ||
| 8147 | 9년 전 | 423 | ||
| 8146 | 9년 전 | 492 | ||
| 8145 | 9년 전 | 448 | ||
| 8144 | 9년 전 | 409 | ||
| 8143 | 9년 전 | 240 | ||
| 8142 | 9년 전 | 473 | ||
| 8141 | 9년 전 | 420 | ||
| 8140 | 9년 전 | 970 | ||
| 8139 | 9년 전 | 320 | ||
| 8138 |
전갈자리남자
|
9년 전 | 424 | |
| 8137 | 9년 전 | 451 | ||
| 8136 | 9년 전 | 792 | ||
| 8135 |
|
9년 전 | 827 | |
| 8134 |
PlayPixel
|
9년 전 | 560 | |
| 8133 |
|
9년 전 | 485 | |
| 8132 | 9년 전 | 495 | ||
| 8131 | 9년 전 | 858 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기