<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년 전 | 85 | ||
| 8229 | 9년 전 | 80 | ||
| 8228 |
커네드커네드
|
9년 전 | 120 | |
| 8227 | 9년 전 | 136 | ||
| 8226 | 9년 전 | 173 | ||
| 8225 | 9년 전 | 159 | ||
| 8224 | 9년 전 | 154 | ||
| 8223 | 9년 전 | 123 | ||
| 8222 |
|
9년 전 | 200 | |
| 8221 | 9년 전 | 99 | ||
| 8220 | 9년 전 | 117 | ||
| 8219 | 9년 전 | 109 | ||
| 8218 | 9년 전 | 157 | ||
| 8217 |
star3840
|
9년 전 | 122 | |
| 8216 | 9년 전 | 168 | ||
| 8215 | 9년 전 | 128 | ||
| 8214 | 9년 전 | 231 | ||
| 8213 | 9년 전 | 172 | ||
| 8212 | 9년 전 | 87 | ||
| 8211 | 9년 전 | 263 | ||
| 8210 | 9년 전 | 256 | ||
| 8209 | 9년 전 | 344 | ||
| 8208 | 9년 전 | 233 | ||
| 8207 | 9년 전 | 239 | ||
| 8206 |
|
9년 전 | 198 | |
| 8205 | 9년 전 | 176 | ||
| 8204 | 9년 전 | 144 | ||
| 8203 | 9년 전 | 240 | ||
| 8202 | 9년 전 | 152 | ||
| 8201 | 9년 전 | 188 | ||
| 8200 | 9년 전 | 173 | ||
| 8199 | 9년 전 | 227 | ||
| 8198 | 9년 전 | 183 | ||
| 8197 | 9년 전 | 175 | ||
| 8196 | 9년 전 | 563 | ||
| 8195 | 9년 전 | 172 | ||
| 8194 | 9년 전 | 292 | ||
| 8193 | 9년 전 | 166 | ||
| 8192 | 9년 전 | 208 | ||
| 8191 | 9년 전 | 154 | ||
| 8190 | 9년 전 | 144 | ||
| 8189 | 9년 전 | 201 | ||
| 8188 | 9년 전 | 137 | ||
| 8187 | 9년 전 | 155 | ||
| 8186 | 9년 전 | 151 | ||
| 8185 | 9년 전 | 322 | ||
| 8184 | 9년 전 | 115 | ||
| 8183 | 9년 전 | 335 | ||
| 8182 | 9년 전 | 178 | ||
| 8181 | 9년 전 | 143 | ||
| 8180 | 9년 전 | 709 | ||
| 8179 | 9년 전 | 497 | ||
| 8178 | 9년 전 | 317 | ||
| 8177 |
kiplayer
|
9년 전 | 339 | |
| 8176 | 9년 전 | 362 | ||
| 8175 | 9년 전 | 234 | ||
| 8174 | 9년 전 | 259 | ||
| 8173 | 9년 전 | 353 | ||
| 8172 | 9년 전 | 211 | ||
| 8171 | 9년 전 | 190 | ||
| 8170 | 9년 전 | 304 | ||
| 8169 |
커네드커네드
|
9년 전 | 264 | |
| 8168 | 9년 전 | 330 | ||
| 8167 | 9년 전 | 326 | ||
| 8166 | 9년 전 | 246 | ||
| 8165 | 9년 전 | 181 | ||
| 8164 | 9년 전 | 309 | ||
| 8163 | 9년 전 | 294 | ||
| 8162 | 9년 전 | 309 | ||
| 8161 | 9년 전 | 304 | ||
| 8160 |
|
9년 전 | 504 | |
| 8159 | 9년 전 | 437 | ||
| 8158 | 9년 전 | 262 | ||
| 8157 | 9년 전 | 391 | ||
| 8156 | 9년 전 | 281 | ||
| 8155 | 9년 전 | 264 | ||
| 8154 |
00년생용띠
|
9년 전 | 606 | |
| 8153 | 9년 전 | 242 | ||
| 8152 |
|
9년 전 | 420 | |
| 8151 | 9년 전 | 419 | ||
| 8150 | 9년 전 | 516 | ||
| 8149 |
Jangfolk
|
9년 전 | 356 | |
| 8148 | 9년 전 | 181 | ||
| 8147 | 9년 전 | 384 | ||
| 8146 | 9년 전 | 452 | ||
| 8145 | 9년 전 | 397 | ||
| 8144 | 9년 전 | 362 | ||
| 8143 | 9년 전 | 205 | ||
| 8142 | 9년 전 | 433 | ||
| 8141 | 9년 전 | 386 | ||
| 8140 | 9년 전 | 938 | ||
| 8139 | 9년 전 | 270 | ||
| 8138 |
전갈자리남자
|
9년 전 | 396 | |
| 8137 | 9년 전 | 405 | ||
| 8136 | 9년 전 | 755 | ||
| 8135 |
|
9년 전 | 804 | |
| 8134 |
PlayPixel
|
9년 전 | 526 | |
| 8133 |
|
9년 전 | 452 | |
| 8132 | 9년 전 | 463 | ||
| 8131 | 9년 전 | 824 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기