<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년 전 | 2060 | ||
| 229 | 20년 전 | 3135 | ||
| 228 | 20년 전 | 3322 | ||
| 227 | 20년 전 | 2393 | ||
| 226 | 20년 전 | 5475 | ||
| 225 | 20년 전 | 2520 | ||
| 224 | 20년 전 | 2967 | ||
| 223 | 20년 전 | 4204 | ||
| 222 | 20년 전 | 2604 | ||
| 221 | 20년 전 | 2289 | ||
| 220 | 20년 전 | 3676 | ||
| 219 | 20년 전 | 2070 | ||
| 218 | 20년 전 | 3564 | ||
| 217 | 20년 전 | 2477 | ||
| 216 | 20년 전 | 2910 | ||
| 215 | 20년 전 | 2225 | ||
| 214 | 20년 전 | 3335 | ||
| 213 | 20년 전 | 2916 | ||
| 212 | 20년 전 | 3048 | ||
| 211 | 20년 전 | 2145 | ||
| 210 | 20년 전 | 1893 | ||
| 209 | 20년 전 | 2352 | ||
| 208 | 20년 전 | 1975 | ||
| 207 | 20년 전 | 1673 | ||
| 206 | 20년 전 | 1855 | ||
| 205 | 20년 전 | 3949 | ||
| 204 | 20년 전 | 1672 | ||
| 203 | 20년 전 | 2010 | ||
| 202 | 20년 전 | 2357 | ||
| 201 | 20년 전 | 1824 | ||
| 200 | 20년 전 | 2955 | ||
| 199 | 20년 전 | 2004 | ||
| 198 | 20년 전 | 2084 | ||
| 197 | 20년 전 | 3650 | ||
| 196 | 20년 전 | 2980 | ||
| 195 | 20년 전 | 2093 | ||
| 194 | 20년 전 | 10243 | ||
| 193 | 20년 전 | 2243 | ||
| 192 | 20년 전 | 1600 | ||
| 191 | 20년 전 | 2663 | ||
| 190 | 20년 전 | 2290 | ||
| 189 | 20년 전 | 1680 | ||
| 188 | 20년 전 | 1476 | ||
| 187 | 20년 전 | 1903 | ||
| 186 | 20년 전 | 1710 | ||
| 185 | 20년 전 | 1758 | ||
| 184 | 20년 전 | 2348 | ||
| 183 | 20년 전 | 1561 | ||
| 182 | 20년 전 | 1484 | ||
| 181 | 20년 전 | 1623 | ||
| 180 | 20년 전 | 2717 | ||
| 179 | 20년 전 | 1802 | ||
| 178 | 20년 전 | 1857 | ||
| 177 | 20년 전 | 1981 | ||
| 176 | 20년 전 | 1801 | ||
| 175 | 20년 전 | 1871 | ||
| 174 | 20년 전 | 1694 | ||
| 173 | 20년 전 | 2058 | ||
| 172 | 20년 전 | 1785 | ||
| 171 | 20년 전 | 2557 | ||
| 170 | 20년 전 | 2268 | ||
| 169 | 20년 전 | 2551 | ||
| 168 | 20년 전 | 1479 | ||
| 167 | 20년 전 | 1578 | ||
| 166 | 20년 전 | 2154 | ||
| 165 | 20년 전 | 1627 | ||
| 164 | 20년 전 | 3768 | ||
| 163 | 20년 전 | 2662 | ||
| 162 | 20년 전 | 2082 | ||
| 161 | 20년 전 | 2787 | ||
| 160 | 20년 전 | 1732 | ||
| 159 | 20년 전 | 1609 | ||
| 158 | 20년 전 | 2562 | ||
| 157 | 20년 전 | 1488 | ||
| 156 | 20년 전 | 1737 | ||
| 155 | 20년 전 | 3227 | ||
| 154 | 20년 전 | 1894 | ||
| 153 | 20년 전 | 1622 | ||
| 152 | 20년 전 | 4950 | ||
| 151 | 20년 전 | 4576 | ||
| 150 | 20년 전 | 3513 | ||
| 149 | 20년 전 | 3792 | ||
| 148 | 20년 전 | 7071 | ||
| 147 | 20년 전 | 3549 | ||
| 146 | 20년 전 | 2619 | ||
| 145 | 20년 전 | 2613 | ||
| 144 | 20년 전 | 7166 | ||
| 143 | 20년 전 | 4598 | ||
| 142 | 20년 전 | 1900 | ||
| 141 | 20년 전 | 3251 | ||
| 140 | 20년 전 | 1959 | ||
| 139 | 20년 전 | 1574 | ||
| 138 | 20년 전 | 2306 | ||
| 137 | 20년 전 | 1778 | ||
| 136 | 20년 전 | 1453 | ||
| 135 | 20년 전 | 1784 | ||
| 134 | 20년 전 | 2966 | ||
| 133 | 20년 전 | 2448 | ||
| 132 | 20년 전 | 1705 | ||
| 131 | 20년 전 | 1637 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기