{"id":16970,"student_id":168,"content":"setBackdrop(\"#222\");\n\nvar shape = 'rect'; // \"rect\" or \"circle\"\nvar index = false;\nvar animate = false;\n\n// var grid = [\"red\",\"orange\",\"yellow\",\"green\",\"blue\",\"purple\"]\n// grid[6] = \"white\"\n\n// var grid = []\n// var i = 0\n// while (i \u003c 30) {\n// grid.push(\"red\")\n// i += 1\n// }\n\n\n\n// var grid = []\n// for(var i = 0 ; i \u003c 1 ; i += 1) {\n// grid.push([\"blue\",\"blue\",\"blue\",\"red\",\"red\",\"red\"])\n// grid.push([\"blue\",\"white\",\"blue\",\"red\",\"red\",\"red\"])\n// grid.push([\"blue\",\"blue\",\"blue\",\"red\",\"red\",\"red\"])\n// grid.push([\"red\",\"red\",\"red\",\"red\",\"red\",\"red\"])\n// grid.push([\"red\",\"red\",\"red\",\"red\",\"red\",\"red\"])\n// grid.push([\"red\",\"red\",\"red\",\"red\",\"red\",\"red\"])\n// grid.push([\"red\",\"red\",\"red\",\"red\",\"red\",\"red\"])\n// grid.push([\"red\",\"red\",\"red\",\"red\",\"red\",\"red\"])\n// }\n\n\nvar grid = []\nvar row = []\nvar row1 = []\nfor(var i = 0 ; i \u003c 10 ; i += 1) {\n row.push(\"#ff8f00\")\n row.push(\"#ffff00\")\n}\nfor(var i = 0 ; i \u003c 10 ; i += 1) {\n row1.push(\"#ffff00\")\n row1.push(\"#ff8f00\")\n}\nfor(var i = 0 ; i \u003c 10 ; i += 1) {\n grid.push(row)\n grid.push(row1)\n}","created_at":"2017-03-01T20:52:04.729+08:00","updated_at":"2019-07-19T11:31:57.472+08:00","name":"陣列 \u0026 迴圈","language":"javascript","screenshot":{"url":"https://cdn2.koding.school/uploads/project/screenshot/16970/fd7084845949c64cd66c246d7fb8bfcb.jpg"},"parent_id":10709,"plugin":"var grid = [];\nvar padding = 20;\npen.size = 0;\n\nforever(function(){\n\n var w,h;\n\n w = grid.length;\n h = 1;\n for(var i=0; i\u003cgrid.length; i++) {\n if(grid[i].constructor === Array \u0026\u0026 grid[i].length \u003e h) {\n h = grid[i].length;\n }\n }\n\n var a = (640 - padding*2) / w;\n var b = (480 - padding*2) / h;\n var cellWidth = a \u003e b ? b : a;\n\n var offsetX = (640 - cellWidth * w) / 2;\n var offsetY = (480 - cellWidth * h) / 2;\n\n var time = Date.now()/1000;\n\n for(var i=0; i\u003cgrid.length; i++) {\n if(grid[i].constructor === Array) {\n for(var j=0; j\u003cgrid[i].length; j++) {\n if(grid[i][j]===undefined) continue;\n pen.fillColor = grid[i][j];\n if(window.shape == 'rect' \u0026\u0026 !animate) {\n pen.drawRect(offsetX + i*cellWidth, offsetY + j*cellWidth, cellWidth - cellWidth/10, cellWidth - cellWidth/10);\n }\n if(window.shape == 'circle' \u0026\u0026 !animate) {\n pen.drawCircle(offsetX + i*cellWidth + cellWidth/2, offsetY + j*cellWidth + cellWidth/2, cellWidth/2 - cellWidth/10);\n }\n if(animate) {\n var waveX = Math.sin(time*3.5 - Math.PI*i/8);\n var waveY = Math.sin(time*3.5 - Math.PI*i/8 - Math.PI/2);\n }\n if(window.shape == 'rect' \u0026\u0026 animate) {\n pen.drawRect(offsetX + i*cellWidth + waveX*3, offsetY + j*cellWidth + waveY*6, cellWidth - cellWidth/10 - waveX*1.2, cellWidth - cellWidth/10 - waveX*1.2);\n }\n if(window.shape == 'circle' \u0026\u0026 animate) {\n pen.drawCircle(offsetX + i*cellWidth + cellWidth/2 + waveX*3, offsetY + j*cellWidth + cellWidth/2 + waveY*6, cellWidth/2 - cellWidth/10 - waveX*1.2);\n }\n }\n } else {\n if(grid[i]===undefined) continue;\n pen.fillColor = grid[i];\n if(window.shape == 'rect' \u0026\u0026 !animate) {\n pen.drawRect(offsetX + i*cellWidth, offsetY, cellWidth - cellWidth/10, cellWidth - cellWidth/10);\n }\n if(window.shape == 'circle' \u0026\u0026 !animate) {\n pen.drawCircle(offsetX + i*cellWidth + cellWidth/2, offsetY + cellWidth/2, cellWidth/2 - cellWidth/10);\n }\n if(animate) {\n var waveX = Math.sin(time*3.5 - Math.PI*i/8);\n var waveY = Math.sin(time*3.5 - Math.PI*0/8 - Math.PI/2);\n }\n if(window.shape == 'rect' \u0026\u0026 animate) {\n pen.drawRect(offsetX + i*cellWidth + waveX*3, offsetY + waveY*6, cellWidth - cellWidth/10 - waveX*1.2, cellWidth - cellWidth/10 - waveX*1.2);\n }\n if(window.shape == 'circle' \u0026\u0026 animate) {\n pen.drawCircle(offsetX + i*cellWidth + cellWidth/2 + waveX*3, offsetY + cellWidth/2 + waveY*6, cellWidth/2 - cellWidth/10 - waveX*1.2);\n }\n }\n }\n\n if(index) {\n var size = cellWidth/3 \u003e 30 ? 30 : cellWidth/3;\n for(var i=0; i\u003cw; i++) {\n print(i, offsetX + i*cellWidth, offsetY - size*1.5, \"white\", size);\n }\n if(h \u003e 1) {\n for(var i=0; i\u003ch; i++) {\n print(i, offsetX - size*1.5, offsetY + i*cellWidth, \"white\", size);\n }\n }\n }\n});","description":null,"note":null,"status":"public","like_student_ids":[],"is_featured":false,"views":73,"hashid":"wdks4rg5","is_content_changed":false,"review_status":"unsubmitted","submitted_at":null,"reviewed_at":null,"advise":null,"is_deleted":false}
[{"id":349024,"file_name":"0.png","project_id":16970,"asset_id":27843,"created_at":"2017-12-02T16:29:39.943+08:00","updated_at":"2017-12-02T16:29:39.943+08:00"},{"id":349025,"file_name":"1.svg","project_id":16970,"asset_id":27844,"created_at":"2017-12-02T16:29:39.945+08:00","updated_at":"2017-12-02T16:29:39.945+08:00"},{"id":349026,"file_name":"2.png","project_id":16970,"asset_id":27845,"created_at":"2017-12-02T16:29:39.946+08:00","updated_at":"2017-12-02T16:29:39.946+08:00"},{"id":349027,"file_name":"0.wav","project_id":16970,"asset_id":27846,"created_at":"2017-12-02T16:29:39.948+08:00","updated_at":"2017-12-02T16:29:39.948+08:00"},{"id":349028,"file_name":"1.wav","project_id":16970,"asset_id":27847,"created_at":"2017-12-02T16:29:39.949+08:00","updated_at":"2017-12-02T16:29:39.949+08:00"}]
橘蘋學習平台
橘蘋學習平台
我的作品
檢視專案頁
匯出
複製
匯入
刪除
下載 Android APP (APK)
截圖
1:1:1
1:1
full
幫助
用手機掃描下方 QRCode 進行安裝
或您也可以
下載 APK
到這台電腦
用手機掃描下方 QRCode 進行安裝
或您也可以
下載 APK
到這台電腦