{"id":199809,"student_id":3525,"content":"{\"html\":\"\u003c!DOCTYPE html\u003e\\n\u003chtml\u003e\\n\u003chead\u003e\\n\\t\u003ctitle\u003eDocument\u003c/title\u003e\\n\\t\u003cscript src=\\\"https://code.jquery.com/jquery-3.2.1.min.js\\\"\u003e\u003c/script\u003e\\n\u003c/head\u003e\\n\u003cbody\u003e\\n \u003cdiv id=\\\"cover\\\"\u003e\\n \u003ch1\u003e紅藍連線大對決\u003c/h1\u003e\\n \u003cbr /\u003e\\n \u003cbutton id=\\\"setId\\\"\u003e創造房間\u003c/button\u003e\\n \u003cbr /\u003e\\n \u003cbutton id=\\\"ready\\\"\u003e加入房間\u003c/button\u003e\\n \u003cbr /\u003e\\n \u003cbutton id=\\\"restart\\\"\u003e重新開始\u003c/button\u003e\\n \u003c/div\u003e\\n\u003c/body\u003e\\n\u003c/html\u003e\",\"css\":\"body {\\n width: 100vw;\\n height: 100vh;\\n background-image: url('bg.jpg');\\n background-size: cover;\\n background-position: center;\\n font-family: Arial;\\n}\\n\\n#cover {\\n width: 100vw;\\n height: 100vh;\\n padding-top: 30px;\\n color: #fff;\\n background-color: #00000099;\\n text-align: center;\\n}\\n\\nh1 {\\n font-size: 45px;\\n}\\n\\nbutton {\\n padding: 10px;\\n border: 2px solid #ccc;\\n font-size: 16px;\\n}\\n\\n#restart {\\n display: none;\\n}\",\"js\":\"var id; //房間id\\nvar p1_count = 0; //自己的點擊次數\\nvar p2_count = 0; //對方的點擊次數\\nvar status = 0; //遊戲狀態 0: 等待, 1: 遊戲中, 2: 遊戲結束\\n\\n$('#setId').click(setId);\\n$('#ready').click(ready);\\n$('body').keyup(push);\\n$('#restart').click(restart);\\n\\nsocket.on(\\\"ready\\\", function(data){\\n if (data == id) {\\n start();\\n socket.emit(\\\"start\\\", id);\\n }\\n});\\nsocket.on(\\\"start\\\", function(data){\\n if (data == id) {\\n start();\\n }\\n});\\nsocket.on(\\\"update\\\", function(data){\\n if (data.id == id) {\\n p2_count = data.count;\\n update();\\n }\\n});\\nsocket.on(\\\"gameover\\\", function(data){\\n if (data == id) {\\n gameover();\\n }\\n});\\n//產生房間 ID\\nfunction setId () {\\n id = Math.floor(Math.random() * 99000 + 1000);\\n $(\\\"h1\\\").text(\\\"房間 ID: \\\" + id);\\n $(\\\"button\\\").hide();\\n}\\n\\n//輸入對方 ID\\nfunction ready () {\\n id = prompt(\\\"請輸入ID:\\\");\\n $(\\\"h1\\\").text(\\\"房間 ID: \\\" + id);\\n socket.emit(\\\"ready\\\", id);\\n}\\n\\n//開始遊戲\\nfunction start () {\\n $(\\\"#cover\\\").fadeOut();\\n status = 1;\\n p1_count = 0;\\n p2_count = 0;\\n $(\\\"body\\\").css(\\\"background-image\\\", \\\"url(bg.jpg)\\\");\\n update();\\n}\\n\\n//推擠對方\\nfunction push () {\\n if (status == 1) {\\n p1_count += 1;\\n update();\\n }\\n}\\n\\n//更新遊戲畫面\\nfunction update () {\\n var diff = p1_count - p2_count;\\n $(\\\"body\\\").css(\\\"background-position-x\\\", `${diff+50}%`);\\n socket.emit(\\\"update\\\", {id: id, count: p1_count});\\n if (diff \u003e= 10) {\\n gameover();\\n socket.emit(\\\"gameover\\\", id);\\n }\\n}\\n\\n//遊戲結束\\nfunction gameover () {\\n status = 2;\\n $(\\\"#cover\\\").fadeIn();\\n if (p1_count \u003e p2_count) {\\n $(\\\"body\\\").css(\\\"background-image\\\", \\\"url(bg_win.jpg)\\\");\\n $(\\\"h1\\\").text(\\\"You Win!!\\\");\\n } else {\\n $(\\\"body\\\").css(\\\"background-image\\\", \\\"url(bg_lose.jpg)\\\");\\n $(\\\"h1\\\").text(\\\"You Lose!!\\\");\\n }\\n $(\\\"button\\\").hide();\\n $(\\\"#restart\\\").show();\\n}\\n\\n//重新開始\\nfunction restart () {\\n socket.emit(\\\"ready\\\", id);\\n}\"}","created_at":"2020-10-31T10:23:08.829+08:00","updated_at":"2020-11-14T11:17:16.353+08:00","name":"紅藍連線大 PK 副本","language":"web","screenshot":{"url":"https://cdn3.koding.school/uploads/project/screenshot/199809/71e3aa17033f5c140ffd70172ce68fcb.jpg"},"parent_id":134129,"plugin":"","description":null,"note":null,"status":"public","like_student_ids":[],"is_featured":false,"views":83,"hashid":"9ygspqep6","is_content_changed":false,"review_status":"unsubmitted","submitted_at":null,"reviewed_at":null,"advise":null,"is_deleted":false}
[{"id":3439326,"file_name":"bg.jpg","project_id":199809,"asset_id":197879,"created_at":"2020-10-31T10:23:08.836+08:00","updated_at":"2020-10-31T10:23:08.836+08:00"},{"id":3439327,"file_name":"bg_lose.jpg","project_id":199809,"asset_id":197883,"created_at":"2020-10-31T10:23:08.837+08:00","updated_at":"2020-10-31T10:23:08.837+08:00"},{"id":3439328,"file_name":"bg_win.jpg","project_id":199809,"asset_id":197884,"created_at":"2020-10-31T10:23:08.838+08:00","updated_at":"2020-10-31T10:23:08.838+08:00"}]
橘蘋學習平台
我的作品
檢視專案頁
匯出
複製
匯入
刪除
下載 Android APP (APK)
截圖
前往網站頁面
繁中
简中
English
日本語
1:1:1
1:1
全寬
用手機掃描下方 QRCode 進行安裝
或您也可以
下載 APK
到這台電腦
用手機掃描下方 QRCode 進行安裝
或您也可以
下載 APK
到這台電腦