<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개
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 230 | 20년 전 | 2072 | ||
| 229 | 20년 전 | 3145 | ||
| 228 | 20년 전 | 3328 | ||
| 227 | 20년 전 | 2406 | ||
| 226 | 20년 전 | 5491 | ||
| 225 | 20년 전 | 2527 | ||
| 224 | 20년 전 | 2971 | ||
| 223 | 20년 전 | 4209 | ||
| 222 | 20년 전 | 2610 | ||
| 221 | 20년 전 | 2294 | ||
| 220 | 20년 전 | 3681 | ||
| 219 | 20년 전 | 2080 | ||
| 218 | 20년 전 | 3569 | ||
| 217 | 20년 전 | 2489 | ||
| 216 | 20년 전 | 2922 | ||
| 215 | 20년 전 | 2230 | ||
| 214 | 20년 전 | 3340 | ||
| 213 | 20년 전 | 2922 | ||
| 212 | 20년 전 | 3056 | ||
| 211 | 20년 전 | 2150 | ||
| 210 | 20년 전 | 1904 | ||
| 209 | 20년 전 | 2363 | ||
| 208 | 20년 전 | 1985 | ||
| 207 | 20년 전 | 1682 | ||
| 206 | 20년 전 | 1857 | ||
| 205 | 20년 전 | 3953 | ||
| 204 | 20년 전 | 1679 | ||
| 203 | 20년 전 | 2016 | ||
| 202 | 20년 전 | 2360 | ||
| 201 | 20년 전 | 1830 | ||
| 200 | 20년 전 | 2962 | ||
| 199 | 20년 전 | 2007 | ||
| 198 | 20년 전 | 2091 | ||
| 197 | 20년 전 | 3657 | ||
| 196 | 20년 전 | 2992 | ||
| 195 | 20년 전 | 2100 | ||
| 194 | 20년 전 | 10256 | ||
| 193 | 20년 전 | 2252 | ||
| 192 | 20년 전 | 1610 | ||
| 191 | 20년 전 | 2675 | ||
| 190 | 20년 전 | 2297 | ||
| 189 | 20년 전 | 1693 | ||
| 188 | 20년 전 | 1491 | ||
| 187 | 20년 전 | 1914 | ||
| 186 | 20년 전 | 1738 | ||
| 185 | 20년 전 | 1780 | ||
| 184 | 20년 전 | 2367 | ||
| 183 | 20년 전 | 1570 | ||
| 182 | 20년 전 | 1489 | ||
| 181 | 20년 전 | 1629 | ||
| 180 | 20년 전 | 2729 | ||
| 179 | 20년 전 | 1812 | ||
| 178 | 20년 전 | 1863 | ||
| 177 | 20년 전 | 1988 | ||
| 176 | 20년 전 | 1809 | ||
| 175 | 20년 전 | 1876 | ||
| 174 | 20년 전 | 1695 | ||
| 173 | 20년 전 | 2061 | ||
| 172 | 20년 전 | 1791 | ||
| 171 | 20년 전 | 2571 | ||
| 170 | 20년 전 | 2279 | ||
| 169 | 20년 전 | 2558 | ||
| 168 | 20년 전 | 1492 | ||
| 167 | 20년 전 | 1584 | ||
| 166 | 20년 전 | 2163 | ||
| 165 | 20년 전 | 1641 | ||
| 164 | 20년 전 | 3777 | ||
| 163 | 20년 전 | 2672 | ||
| 162 | 20년 전 | 2095 | ||
| 161 | 20년 전 | 2803 | ||
| 160 | 20년 전 | 1739 | ||
| 159 | 20년 전 | 1622 | ||
| 158 | 20년 전 | 2570 | ||
| 157 | 20년 전 | 1492 | ||
| 156 | 20년 전 | 1745 | ||
| 155 | 20년 전 | 3235 | ||
| 154 | 20년 전 | 1905 | ||
| 153 | 20년 전 | 1630 | ||
| 152 | 20년 전 | 4959 | ||
| 151 | 20년 전 | 4583 | ||
| 150 | 20년 전 | 3520 | ||
| 149 | 20년 전 | 3807 | ||
| 148 | 20년 전 | 7086 | ||
| 147 | 20년 전 | 3558 | ||
| 146 | 20년 전 | 2631 | ||
| 145 | 20년 전 | 2626 | ||
| 144 | 20년 전 | 7173 | ||
| 143 | 20년 전 | 4608 | ||
| 142 | 20년 전 | 1904 | ||
| 141 | 20년 전 | 3254 | ||
| 140 | 20년 전 | 1968 | ||
| 139 | 20년 전 | 1589 | ||
| 138 | 20년 전 | 2314 | ||
| 137 | 20년 전 | 1785 | ||
| 136 | 20년 전 | 1462 | ||
| 135 | 20년 전 | 1792 | ||
| 134 | 20년 전 | 2972 | ||
| 133 | 20년 전 | 2456 | ||
| 132 | 20년 전 | 1709 | ||
| 131 | 20년 전 | 1651 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기