Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- insert into
- swift
- 자전거
- 대전 업힐
- MDB
- Exif
- swift html parser
- exifread
- kanna parser
- EXIF data
- 엑셀
- 대전
- html parser
- 유성
- Xcode
- 파이썬
- dataset
- 달력
- VBA
- euc-kr
- 대전 자전거
- file move
- kanna html parser
- 딴지일보 자유게시판 파씽
- 노은
- 스위프트
- StreamReader
- mdb table 합치기
- python
- C#
Archives
- Today
- Total
Fly to the sky & Return
[HTML5] Canvas 를 이용한 태극기 만들기 본문
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
태극기를 HTML5를 이용해서 만들어봤습니다.
심심풀이로 접근했다가 태극기의 모양의 수평대비 직각구조가 아니라 약 33.5도 혹은 56.5도 기울어져 있다는 점이 만드는데 생각을 많이 하게 하더라구여.
요거 그리면서 canvas의 여러가지 기능도 시험해보고.. 그랬네여
아쉬운 점이 있다면 좀더 깔끔하게 만들지 못한점. 요것이 아쉽기도 하구여.. translate 기능을 활용하지 못한점도 문제점으로 남는듯하단 생각을 해봅니당..
소스는 다음과 같습니다.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 | <!DOCTYPE html> <html> <head> <title> 태극기 </title> <meta charset="UTF-8"> <script> var ctx; function init(){ ctx=document.getElementById('canvas').getContext('2d'); // ctx.translate(600 / 2, 400 / 2); ctx.rect(0, 0, 600, 400); //태극기 외부 사각형 ctx.stroke(); //ctx.strokeStyle = "Black"; //ctx.beginPath(); //ctx.moveTo(0, 0); //ctx.lineTo(600, 400); //ctx.stroke(); //ctx.moveTo(600, 0); //ctx.lineTo(0, 400); //ctx.stroke(); ctx.rotate(33.55*Math.PI/180); // 태극중심과 건, 곤을 33.55도 이동 ctx.fillStyle = "RED"; // 태극중심의 빨간부위 ctx.beginPath(); ctx.arc(360, 0, 100, 0, Math.PI, true); ctx.fill(); ctx.fillStyle = "blue"; //태극중심의 파란 부위 ctx.beginPath(); ctx.arc(360, 0, 100, 0, Math.PI,false); ctx.fill(); // ctx.rotate(33 * Math.PI / 180); ctx.fillStyle = "red"; //태극중심의 빨간부분 마무리 ctx.beginPath(); ctx.arc(310, 0, 50, 0, Math.PI, false); ctx.fill(); ctx.fillStyle = "blue"; //태극중심의 파란부분 마무리 ctx.beginPath(); ctx.arc(410, 0, 50, 0, Math.PI, true); ctx.fill(); ctx.strokeStyle = "Red"; //태극 마무리 ctx.beginPath(); ctx.moveTo(260, 0); ctx.lineTo(360, 0); ctx.stroke(); //건 부분 ctx.fillStyle = "black"; ctx.beginPath(); ctx.fillRect(210,50, -200/12,-100); ctx.fill(); ctx.fillStyle = "black"; ctx.beginPath(); ctx.fillRect(210 - 200 / 12 - 200 / 24, 50, -200 / 12, -100); ctx.fill(); ctx.fillStyle = "black"; ctx.beginPath(); ctx.fillRect(210 - 400 / 12 - 400 / 24, 50, -200 / 12, -100); ctx.fill(); //건 끝 //곤 부분 ctx.fillStyle = "black"; ctx.beginPath(); ctx.fillRect(510, -200 / 48, 200 / 12, -(50 - 200 / 48)); ctx.fill(); ctx.fillStyle = "black"; ctx.beginPath(); ctx.fillRect(510 + 200 / 12 + 200 / 24, -200 / 48, 200 / 12, -(50 - 200 / 48)); ctx.fill(); ctx.fillStyle = "black"; ctx.beginPath(); ctx.fillRect(510 + 200 / 12 + 200 / 24 + 200 / 12 + 200 / 24, -200 / 48, 200 / 12, -(50 - 200 / 48)); ctx.fill(); ctx.fillStyle = "black"; ctx.beginPath(); ctx.fillRect(510, 200 / 48, 200 / 12, (50 - 200 / 48)); ctx.fill(); ctx.fillStyle = "black"; ctx.beginPath(); ctx.fillRect(510 + 200 / 12 + 200 / 24, 200 / 48, 200 / 12, (50 - 200 / 48)); ctx.fill(); ctx.fillStyle = "black"; ctx.beginPath(); ctx.fillRect(510 + 200 / 12 + 200 / 24 + 200 / 12 + 200 / 24, 200 / 48, 200 / 12, (50 - 200 / 48)); ctx.fill(); // 곤 끝 ctx.rotate(-33.55 * Math.PI / 180); //태극중심과 건 곤 부분의 회전 끝 ctx.rotate(56.55 * Math.PI / 180); //이 와 감 부분을 56.55도 회전 //이 부분 ctx.fillStyle = "black"; ctx.beginPath(); ctx.fillRect(282,9,100,200/12); ctx.fill(); ctx.fillStyle = "black"; ctx.beginPath(); ctx.fillRect(282, 9 + 200 / 12 + 200 / 24, 50 - 200 / 48, 200 / 12); ctx.fill(); ctx.fillStyle = "black"; ctx.beginPath(); ctx.fillRect(282+50+200/48, 9 + 200 / 12 + 200 / 24, 50 - 200 / 48, 200 / 12); ctx.fill(); ctx.fillStyle = "black"; ctx.beginPath(); ctx.fillRect(282, 9 + 200 / 12 + 200 / 24 + 200 / 12 + 200 / 24, 100, 200 / 12); ctx.fill(); // 이 부분 끝 //감 부분 ctx.fillStyle = "black"; ctx.beginPath(); ctx.fillRect(332-200/48, -320, -(50-200/48), 200 / 12); ctx.fill(); ctx.fillStyle = "black"; ctx.beginPath(); ctx.fillRect(332 + 200 / 48, -320, (50 - 200 / 48), 200 / 12); ctx.fill(); ctx.fillStyle = "black"; ctx.beginPath(); ctx.fillRect(332-50, -320-200/12-200/24,100, 200 / 12); ctx.fill(); ctx.fillStyle = "black"; ctx.beginPath(); ctx.fillRect(332 - 200 / 48, -320-400/12-400/24, -(50 - 200 / 48), 200 / 12); ctx.fill(); ctx.fillStyle = "black"; ctx.beginPath(); ctx.fillRect(332 + 200 / 48, -320 - 400 / 12 - 400 / 24, (50 - 200 / 48), 200 / 12); ctx.fill(); //감부분 끝 } </script> </head> <body onLoad ="init();"> <canvas id = "canvas" width="600" height="400"> </canvas> </body> </html> | cs |
'프로그래밍 > 웹 PHP 등' 카테고리의 다른 글
[php] 일정관리를 위한 소스 (2) | 2016.04.05 |
---|---|
[HTML5] canvas 를 이용한 태극기 만들기 2 (0) | 2014.01.10 |