├── .gitignore ├── README.md ├── assets ├── audio │ ├── hover.wav │ ├── index_btn.mp3 │ └── intro.mp3 ├── css │ ├── agate.css │ ├── index.css │ └── main.css ├── favicon.ico ├── game-mobile │ ├── cocos2d-js-min.6b9e9.js │ ├── game-mobile.html │ ├── main.9c261.js │ ├── res │ │ ├── import │ │ │ ├── 02 │ │ │ │ └── 029969575.dc71c.json │ │ │ ├── 05 │ │ │ │ └── 059bf150c.226aa.json │ │ │ ├── 0b │ │ │ │ └── 0bf03e42d.fdac6.json │ │ │ └── 0c │ │ │ │ └── 0c008bb79.bac04.json │ │ ├── raw-assets │ │ │ ├── Texture │ │ │ │ ├── Super Mario Bros │ │ │ │ │ ├── badflower │ │ │ │ │ │ ├── 0.650ee.png │ │ │ │ │ │ ├── 1.26895.png │ │ │ │ │ │ ├── 10.1a7f2.png │ │ │ │ │ │ ├── 11.90b28.png │ │ │ │ │ │ ├── 12.8d802.png │ │ │ │ │ │ ├── 13.17891.png │ │ │ │ │ │ ├── 14.a26a5.png │ │ │ │ │ │ ├── 15.1099b.png │ │ │ │ │ │ ├── 16.bb2c2.png │ │ │ │ │ │ ├── 17.54ea3.png │ │ │ │ │ │ ├── 18.4dea3.png │ │ │ │ │ │ ├── 19.10fa9.png │ │ │ │ │ │ ├── 2.ccf8a.png │ │ │ │ │ │ ├── 20.b4cd1.png │ │ │ │ │ │ ├── 21.b1b64.png │ │ │ │ │ │ ├── 22.16f94.png │ │ │ │ │ │ ├── 23.d91c7.png │ │ │ │ │ │ ├── 24.0189c.png │ │ │ │ │ │ ├── 25.a4586.png │ │ │ │ │ │ ├── 26.f4bbf.png │ │ │ │ │ │ ├── 27.579ff.png │ │ │ │ │ │ ├── 28.32782.png │ │ │ │ │ │ ├── 29.8e94b.png │ │ │ │ │ │ ├── 3.08d1e.png │ │ │ │ │ │ ├── 30.edc99.png │ │ │ │ │ │ ├── 31.0fc53.png │ │ │ │ │ │ ├── 32.3d751.png │ │ │ │ │ │ ├── 33.bf02f.png │ │ │ │ │ │ ├── 34.268d4.png │ │ │ │ │ │ ├── 35.fca22.png │ │ │ │ │ │ ├── 4.98746.png │ │ │ │ │ │ ├── 5.1cfc3.png │ │ │ │ │ │ ├── 6.41a4c.png │ │ │ │ │ │ ├── 7.c61af.png │ │ │ │ │ │ ├── 8.f79f7.png │ │ │ │ │ │ └── 9.4fb17.png │ │ │ │ │ ├── end.54c00.png │ │ │ │ │ ├── fire │ │ │ │ │ │ └── fireL │ │ │ │ │ │ │ ├── 0.1cf51.png │ │ │ │ │ │ │ ├── 1.3b259.png │ │ │ │ │ │ │ ├── 2.0b0ac.png │ │ │ │ │ │ │ ├── 3.23a22.png │ │ │ │ │ │ │ └── 4.cb522.png │ │ │ │ │ ├── map1.ba2dc.jpg │ │ │ │ │ ├── mario │ │ │ │ │ │ └── smallmario │ │ │ │ │ │ │ ├── marioL │ │ │ │ │ │ │ ├── 0.7d943.png │ │ │ │ │ │ │ ├── 1.7f21d.png │ │ │ │ │ │ │ ├── 10.7018f.png │ │ │ │ │ │ │ ├── 11.0060c.png │ │ │ │ │ │ │ ├── 12.dbbc7.png │ │ │ │ │ │ │ ├── 13.646d8.png │ │ │ │ │ │ │ ├── 14.6737c.png │ │ │ │ │ │ │ ├── 15.249e8.png │ │ │ │ │ │ │ ├── 16.8171e.png │ │ │ │ │ │ │ ├── 17.fc462.png │ │ │ │ │ │ │ ├── 18.2207e.png │ │ │ │ │ │ │ ├── 19.06cea.png │ │ │ │ │ │ │ ├── 2.1903a.png │ │ │ │ │ │ │ ├── 20.db76c.png │ │ │ │ │ │ │ ├── 21.5f894.png │ │ │ │ │ │ │ ├── 3.5c7a8.png │ │ │ │ │ │ │ ├── 4.64741.png │ │ │ │ │ │ │ ├── 5.51545.png │ │ │ │ │ │ │ ├── 6.1d2a9.png │ │ │ │ │ │ │ ├── 7.08651.png │ │ │ │ │ │ │ ├── 8.59e41.png │ │ │ │ │ │ │ ├── 9.72df1.png │ │ │ │ │ │ │ ├── jump.c4360.png │ │ │ │ │ │ │ └── stand.56adb.png │ │ │ │ │ │ │ └── marioR │ │ │ │ │ │ │ ├── 0.ad8f2.png │ │ │ │ │ │ │ ├── 1.7a089.png │ │ │ │ │ │ │ ├── 10.dbcc4.png │ │ │ │ │ │ │ ├── 11.365c6.png │ │ │ │ │ │ │ ├── 12.18f58.png │ │ │ │ │ │ │ ├── 13.b4d03.png │ │ │ │ │ │ │ ├── 14.c1d97.png │ │ │ │ │ │ │ ├── 15.f3ed3.png │ │ │ │ │ │ │ ├── 16.b147d.png │ │ │ │ │ │ │ ├── 17.835d4.png │ │ │ │ │ │ │ ├── 18.93f24.png │ │ │ │ │ │ │ ├── 19.56ddd.png │ │ │ │ │ │ │ ├── 2.6b38a.png │ │ │ │ │ │ │ ├── 20.7d71e.png │ │ │ │ │ │ │ ├── 21.214aa.png │ │ │ │ │ │ │ ├── 3.0948d.png │ │ │ │ │ │ │ ├── 4.bc8a3.png │ │ │ │ │ │ │ ├── 5.03779.png │ │ │ │ │ │ │ ├── 6.f1b4a.png │ │ │ │ │ │ │ ├── 7.d938e.png │ │ │ │ │ │ │ ├── 8.d34ab.png │ │ │ │ │ │ │ ├── 9.aad82.png │ │ │ │ │ │ │ ├── jump.cfd20.png │ │ │ │ │ │ │ └── stand.bf3b0.png │ │ │ │ │ ├── over.ce95a.png │ │ │ │ │ ├── pipe_01.c6ff8.png │ │ │ │ │ ├── wall │ │ │ │ │ │ └── afterabnormalwall.16bc4.png │ │ │ │ │ ├── welcome.b2234.jpg │ │ │ │ │ └── winS.cbd09.png │ │ │ │ ├── back.dbb60.png │ │ │ │ ├── go.6287e.png │ │ │ │ ├── jump.c1117.png │ │ │ │ └── logo │ │ │ │ │ ├── bootstrap-stack.0da25.png │ │ │ │ │ ├── echarts-footer-logo.261af.png │ │ │ │ │ ├── git.25ee3.png │ │ │ │ │ ├── jQuery.c2fbd.jpg │ │ │ │ │ ├── vue.4b4c3.png │ │ │ │ │ └── webpack.685ba.png │ │ │ └── audio │ │ │ │ ├── end.95f4d.mp3 │ │ │ │ ├── hover.afd27.mp3 │ │ │ │ ├── over .33319.mp3 │ │ │ │ ├── playing .e4fb1.mp3 │ │ │ │ └── start .fe63a.mp3 │ │ └── raw-internal │ │ │ └── image │ │ │ └── default_sprite.68270.png │ ├── splash.03ce1.png │ ├── src │ │ ├── project.837d8.js │ │ └── settings.f7cd3.js │ ├── style-desktop.ec961.css │ └── style-mobile.72851.css ├── game │ ├── SuperMarioBros.html │ ├── cocos2d-js-min.js │ ├── main.js │ ├── res │ │ ├── import │ │ │ ├── 02 │ │ │ │ └── 029969575.json │ │ │ ├── 04 │ │ │ │ └── 0456bdf3f.json │ │ │ ├── 05 │ │ │ │ └── 059bf150c.json │ │ │ ├── 0b │ │ │ │ └── 0bf03e42d.json │ │ │ ├── 0c │ │ │ │ └── 0c008bb79.json │ │ │ └── 0d │ │ │ │ └── 0d6a13f89.json │ │ ├── raw-assets │ │ │ ├── Texture │ │ │ │ ├── Super Mario Bros │ │ │ │ │ ├── badflower │ │ │ │ │ │ ├── 0.png │ │ │ │ │ │ ├── 1.png │ │ │ │ │ │ ├── 10.png │ │ │ │ │ │ ├── 11.png │ │ │ │ │ │ ├── 12.png │ │ │ │ │ │ ├── 13.png │ │ │ │ │ │ ├── 14.png │ │ │ │ │ │ ├── 15.png │ │ │ │ │ │ ├── 16.png │ │ │ │ │ │ ├── 17.png │ │ │ │ │ │ ├── 18.png │ │ │ │ │ │ ├── 19.png │ │ │ │ │ │ ├── 2.png │ │ │ │ │ │ ├── 20.png │ │ │ │ │ │ ├── 21.png │ │ │ │ │ │ ├── 22.png │ │ │ │ │ │ ├── 23.png │ │ │ │ │ │ ├── 24.png │ │ │ │ │ │ ├── 25.png │ │ │ │ │ │ ├── 26.png │ │ │ │ │ │ ├── 27.png │ │ │ │ │ │ ├── 28.png │ │ │ │ │ │ ├── 29.png │ │ │ │ │ │ ├── 3.png │ │ │ │ │ │ ├── 30.png │ │ │ │ │ │ ├── 31.png │ │ │ │ │ │ ├── 32.png │ │ │ │ │ │ ├── 33.png │ │ │ │ │ │ ├── 34.png │ │ │ │ │ │ ├── 35.png │ │ │ │ │ │ ├── 4.png │ │ │ │ │ │ ├── 5.png │ │ │ │ │ │ ├── 6.png │ │ │ │ │ │ ├── 7.png │ │ │ │ │ │ ├── 8.png │ │ │ │ │ │ └── 9.png │ │ │ │ │ ├── end.png │ │ │ │ │ ├── fire │ │ │ │ │ │ └── fireL │ │ │ │ │ │ │ ├── 0.png │ │ │ │ │ │ │ ├── 1.png │ │ │ │ │ │ │ ├── 2.png │ │ │ │ │ │ │ ├── 3.png │ │ │ │ │ │ │ └── 4.png │ │ │ │ │ ├── map.jpg │ │ │ │ │ ├── map1.jpg │ │ │ │ │ ├── mario │ │ │ │ │ │ ├── bigmario │ │ │ │ │ │ │ ├── marioL │ │ │ │ │ │ │ │ ├── 0.png │ │ │ │ │ │ │ │ ├── 1.png │ │ │ │ │ │ │ │ ├── 10.png │ │ │ │ │ │ │ │ ├── 11.png │ │ │ │ │ │ │ │ ├── 12.png │ │ │ │ │ │ │ │ ├── 13.png │ │ │ │ │ │ │ │ ├── 14.png │ │ │ │ │ │ │ │ ├── 15.png │ │ │ │ │ │ │ │ ├── 16.png │ │ │ │ │ │ │ │ ├── 17.png │ │ │ │ │ │ │ │ ├── 18.png │ │ │ │ │ │ │ │ ├── 19.png │ │ │ │ │ │ │ │ ├── 2.png │ │ │ │ │ │ │ │ ├── 20.png │ │ │ │ │ │ │ │ ├── 21.png │ │ │ │ │ │ │ │ ├── 3.png │ │ │ │ │ │ │ │ ├── 4.png │ │ │ │ │ │ │ │ ├── 5.png │ │ │ │ │ │ │ │ ├── 6.png │ │ │ │ │ │ │ │ ├── 7.png │ │ │ │ │ │ │ │ ├── 8.png │ │ │ │ │ │ │ │ ├── 9.png │ │ │ │ │ │ │ │ ├── jump.png │ │ │ │ │ │ │ │ └── stand.png │ │ │ │ │ │ │ └── marioR │ │ │ │ │ │ │ │ ├── 0.png │ │ │ │ │ │ │ │ ├── 1.png │ │ │ │ │ │ │ │ ├── 10.png │ │ │ │ │ │ │ │ ├── 11.png │ │ │ │ │ │ │ │ ├── 12.png │ │ │ │ │ │ │ │ ├── 13.png │ │ │ │ │ │ │ │ ├── 14.png │ │ │ │ │ │ │ │ ├── 15.png │ │ │ │ │ │ │ │ ├── 16.png │ │ │ │ │ │ │ │ ├── 17.png │ │ │ │ │ │ │ │ ├── 18.png │ │ │ │ │ │ │ │ ├── 19.png │ │ │ │ │ │ │ │ ├── 2.png │ │ │ │ │ │ │ │ ├── 20.png │ │ │ │ │ │ │ │ ├── 21.png │ │ │ │ │ │ │ │ ├── 3.png │ │ │ │ │ │ │ │ ├── 4.png │ │ │ │ │ │ │ │ ├── 5.png │ │ │ │ │ │ │ │ ├── 6.png │ │ │ │ │ │ │ │ ├── 7.png │ │ │ │ │ │ │ │ ├── 8.png │ │ │ │ │ │ │ │ ├── 9.png │ │ │ │ │ │ │ │ ├── jump.png │ │ │ │ │ │ │ │ └── stand.png │ │ │ │ │ │ └── smallmario │ │ │ │ │ │ │ ├── marioL │ │ │ │ │ │ │ ├── 0.png │ │ │ │ │ │ │ ├── 1.png │ │ │ │ │ │ │ ├── 10.png │ │ │ │ │ │ │ ├── 11.png │ │ │ │ │ │ │ ├── 12.png │ │ │ │ │ │ │ ├── 13.png │ │ │ │ │ │ │ ├── 14.png │ │ │ │ │ │ │ ├── 15.png │ │ │ │ │ │ │ ├── 16.png │ │ │ │ │ │ │ ├── 17.png │ │ │ │ │ │ │ ├── 18.png │ │ │ │ │ │ │ ├── 19.png │ │ │ │ │ │ │ ├── 2.png │ │ │ │ │ │ │ ├── 20.png │ │ │ │ │ │ │ ├── 21.png │ │ │ │ │ │ │ ├── 3.png │ │ │ │ │ │ │ ├── 4.png │ │ │ │ │ │ │ ├── 5.png │ │ │ │ │ │ │ ├── 6.png │ │ │ │ │ │ │ ├── 7.png │ │ │ │ │ │ │ ├── 8.png │ │ │ │ │ │ │ ├── 9.png │ │ │ │ │ │ │ ├── jump.png │ │ │ │ │ │ │ └── stand.png │ │ │ │ │ │ │ └── marioR │ │ │ │ │ │ │ ├── 0.png │ │ │ │ │ │ │ ├── 1.png │ │ │ │ │ │ │ ├── 10.png │ │ │ │ │ │ │ ├── 11.png │ │ │ │ │ │ │ ├── 12.png │ │ │ │ │ │ │ ├── 13.png │ │ │ │ │ │ │ ├── 14.png │ │ │ │ │ │ │ ├── 15.png │ │ │ │ │ │ │ ├── 16.png │ │ │ │ │ │ │ ├── 17.png │ │ │ │ │ │ │ ├── 18.png │ │ │ │ │ │ │ ├── 19.png │ │ │ │ │ │ │ ├── 2.png │ │ │ │ │ │ │ ├── 20.png │ │ │ │ │ │ │ ├── 21.png │ │ │ │ │ │ │ ├── 3.png │ │ │ │ │ │ │ ├── 4.png │ │ │ │ │ │ │ ├── 5.png │ │ │ │ │ │ │ ├── 6.png │ │ │ │ │ │ │ ├── 7.png │ │ │ │ │ │ │ ├── 8.png │ │ │ │ │ │ │ ├── 9.png │ │ │ │ │ │ │ ├── jump.png │ │ │ │ │ │ │ └── stand.png │ │ │ │ │ ├── over.png │ │ │ │ │ ├── pipe_01.png │ │ │ │ │ ├── wall │ │ │ │ │ │ └── afterabnormalwall.png │ │ │ │ │ ├── welcome.jpg │ │ │ │ │ └── winS.png │ │ │ │ ├── back.png │ │ │ │ ├── go.png │ │ │ │ ├── jump.png │ │ │ │ └── logo │ │ │ │ │ ├── bootstrap-stack.png │ │ │ │ │ ├── echarts-footer-logo.png │ │ │ │ │ ├── git.png │ │ │ │ │ ├── jQuery.jpg │ │ │ │ │ ├── vue.png │ │ │ │ │ └── webpack.png │ │ │ └── audio │ │ │ │ ├── end.mp3 │ │ │ │ ├── hover.mp3 │ │ │ │ ├── over .mp3 │ │ │ │ ├── playing .mp3 │ │ │ │ └── start .mp3 │ │ └── raw-internal │ │ │ └── image │ │ │ └── default_sprite.png │ ├── splash.png │ ├── src │ │ ├── project.js │ │ └── settings.js │ ├── style-desktop.css │ └── style-mobile.css ├── images │ ├── banner_default.jpg │ ├── beauty1.jpg │ ├── beauty2.jpg │ ├── dots.gif │ ├── header_boy.jpg │ ├── header_girl.jpg │ ├── logo_outline.svg │ ├── quote.svg │ └── stick_figure.jpg ├── js │ ├── app.js │ ├── highlight.pack.js │ ├── index.js │ └── jquery-1.12.4.min.js ├── myPlugin │ ├── dash-player │ │ ├── 1280.jpg │ │ ├── dash-player.zip │ │ ├── index.css │ │ └── index.html │ ├── donut-chart │ │ ├── donut-chart.js │ │ ├── donut-chart.min.js │ │ ├── donut-chart.zip │ │ └── example.html │ └── turntable │ │ ├── images │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ └── start.png │ │ ├── turntable-master.zip │ │ ├── turntable.html │ │ ├── turntable.js │ │ └── turntable.zip └── personal-information │ ├── info.html │ ├── info.jpg │ ├── jquery.fullPage.css │ ├── jquery.fullPage.js │ ├── qrcode.jpg │ └── work-experience.html ├── bin └── www ├── config ├── accessToken.json └── wechat.conf.json ├── index.js ├── package-lock.json ├── package.json ├── routes ├── plugin.js └── wechat.js ├── static └── MP_verify_udtBGk0JibN6prgJ.txt ├── views ├── about.html ├── home.html ├── index.html ├── layout │ ├── footer.html │ ├── header.html │ └── umeng.html ├── plugin.html ├── plugin │ ├── dash-player.html │ ├── donut-chart.html │ └── turntable.html └── utils │ ├── highlightCode.html │ ├── plugin-app-css.html │ └── plugin-app-js.html └── wechat ├── config └── accessToken.json ├── msg.js └── wechat.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | npm-debug.log* 4 | yarn-debug.log* 5 | yarn-error.log* 6 | /test/unit/coverage/ 7 | /test/e2e/reports/ 8 | selenium-debug.log 9 | # Editor directories and files 10 | .idea 11 | .vscode 12 | *.suo 13 | *.ntvs* 14 | *.njsproj 15 | *.sln 16 | *access.log* 17 | 18 | log -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## 个人网站地址 2 | http://yangchaojie.top/ 3 | -------------------------------------------------------------------------------- /assets/audio/hover.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/audio/hover.wav -------------------------------------------------------------------------------- /assets/audio/index_btn.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/audio/index_btn.mp3 -------------------------------------------------------------------------------- /assets/audio/intro.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/audio/intro.mp3 -------------------------------------------------------------------------------- /assets/css/agate.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Agate by Taufik Nurrohman 3 | * ---------------------------------------------------- 4 | * 5 | * #ade5fc 6 | * #a2fca2 7 | * #c6b4f0 8 | * #d36363 9 | * #fcc28c 10 | * #fc9b9b 11 | * #ffa 12 | * #fff 13 | * #333 14 | * #62c8f3 15 | * #888 16 | * 17 | */ 18 | 19 | .hljs { 20 | display: block; 21 | overflow-x: auto; 22 | padding: 0.5em; 23 | background: #333; 24 | color: white; 25 | } 26 | 27 | .hljs-name, 28 | .hljs-strong { 29 | font-weight: bold; 30 | } 31 | 32 | .hljs-code, 33 | .hljs-emphasis { 34 | font-style: italic; 35 | } 36 | 37 | .hljs-tag { 38 | color: #62c8f3; 39 | } 40 | 41 | .hljs-variable, 42 | .hljs-template-variable, 43 | .hljs-selector-id, 44 | .hljs-selector-class { 45 | color: #ade5fc; 46 | } 47 | 48 | .hljs-string, 49 | .hljs-bullet { 50 | color: #a2fca2; 51 | } 52 | 53 | .hljs-type, 54 | .hljs-title, 55 | .hljs-section, 56 | .hljs-attribute, 57 | .hljs-quote, 58 | .hljs-built_in, 59 | .hljs-builtin-name { 60 | color: #ffa; 61 | } 62 | 63 | .hljs-number, 64 | .hljs-symbol, 65 | .hljs-bullet { 66 | color: #d36363; 67 | } 68 | 69 | .hljs-keyword, 70 | .hljs-selector-tag, 71 | .hljs-literal { 72 | color: #fcc28c; 73 | } 74 | 75 | .hljs-comment, 76 | .hljs-deletion, 77 | .hljs-code { 78 | color: #888; 79 | } 80 | 81 | .hljs-regexp, 82 | .hljs-link { 83 | color: #c6b4f0; 84 | } 85 | 86 | .hljs-meta { 87 | color: #fc9b9b; 88 | } 89 | 90 | .hljs-deletion { 91 | background-color: #fc9b9b; 92 | color: #333; 93 | } 94 | 95 | .hljs-addition { 96 | background-color: #a2fca2; 97 | color: #333; 98 | } 99 | 100 | .hljs a { 101 | color: inherit; 102 | } 103 | 104 | .hljs a:focus, 105 | .hljs a:hover { 106 | color: inherit; 107 | text-decoration: underline; 108 | } 109 | -------------------------------------------------------------------------------- /assets/css/index.css: -------------------------------------------------------------------------------- 1 | body, 2 | html { 3 | width : 100%; 4 | height : 100%; 5 | overflow: hidden; 6 | } 7 | 8 | .hello { 9 | position : absolute; 10 | color : white; 11 | left : 5%; 12 | top : 5%; 13 | font-size : 30px; 14 | z-index : 12; 15 | text-transform: uppercase; 16 | filter : blur(0); 17 | animation : hello 1s linear; 18 | } 19 | 20 | @keyframes hello { 21 | from { 22 | filter: blur(10px) 23 | } 24 | 25 | to { 26 | filter: blur(0) 27 | } 28 | } 29 | 30 | canvas { 31 | background: black; 32 | cursor : crosshair; 33 | } 34 | 35 | .lineStage { 36 | position : absolute; 37 | left : 50%; 38 | top : 0; 39 | transform: translate(-50%); 40 | z-index : 10; 41 | } 42 | 43 | @keyframes welcome { 44 | 0% { 45 | left : 5%; 46 | height: 0; 47 | } 48 | 49 | 20% { 50 | left : 5%; 51 | height: 50px; 52 | } 53 | 54 | 100% { 55 | left : 70%; 56 | height: 50px; 57 | } 58 | } 59 | 60 | .welcome { 61 | color : white; 62 | font-size : 40px; 63 | position : fixed; 64 | left : 70%; 65 | z-index : 20; 66 | bottom : 10%; 67 | height : 50px; 68 | overflow : hidden; 69 | animation : welcome 10s linear; 70 | cursor : crosshair; 71 | mix-blend-mode: exclusion; 72 | 73 | } 74 | 75 | .welcome a { 76 | color: white; 77 | } 78 | 79 | .tool { 80 | position: fixed; 81 | right : 20px; 82 | top : 30px; 83 | z-index : 11; 84 | } 85 | 86 | .tool ul { 87 | padding : 0; 88 | margin : 0; 89 | width : 150px; 90 | /* background: pink; */ 91 | } 92 | 93 | .tool ul li { 94 | float : left; 95 | list-style : none; 96 | position : relative; 97 | height : 50px; 98 | margin-right: 10px; 99 | } 100 | 101 | .tool ul li span { 102 | background : white; 103 | border-radius: 50%; 104 | display : inline-block; 105 | position : absolute; 106 | bottom : 0; 107 | box-shadow : 0 0 5px 0px #9e9e9e; 108 | cursor : pointer; 109 | } 110 | 111 | .tool ul li.on span { 112 | background: #bebaa1; 113 | } 114 | 115 | .tool ul li span:hover { 116 | background: #bebaa1; 117 | } 118 | 119 | .tool ul li:nth-child(1) { 120 | width: 30px; 121 | } 122 | 123 | .tool ul li:nth-child(2) { 124 | width: 40px; 125 | } 126 | 127 | .tool ul li:nth-child(3) { 128 | width: 50px; 129 | } 130 | 131 | .tool ul li:nth-child(1) span { 132 | width : 30px; 133 | height: 30px; 134 | } 135 | 136 | .tool ul li:nth-child(2) span { 137 | width : 40px; 138 | height: 40px; 139 | } 140 | 141 | .tool ul li:nth-child(3) span { 142 | width : 50px; 143 | height: 50px; 144 | } 145 | 146 | .clearfix:before, 147 | .clearfix:after { 148 | content: ''; 149 | display: table; 150 | } 151 | 152 | .clearfix:after { 153 | clear: both; 154 | } 155 | 156 | .enter { 157 | position : fixed; 158 | right : 10%; 159 | bottom : 10%; 160 | z-index : 12; 161 | animation: index_arrow 2s linear 10s infinite; 162 | cursor : pointer; 163 | } 164 | 165 | .enter a { 166 | display: inline-block; 167 | } 168 | 169 | #icon { 170 | width: 50px; 171 | float: left; 172 | } 173 | 174 | .st0 { 175 | fill : transparent; 176 | stroke : white; 177 | stroke-width : 3px; 178 | stroke-dasharray : 5427.90283203125; 179 | stroke-dashoffset: 0; 180 | animation : dash 5s linear; 181 | } 182 | 183 | @keyframes dash { 184 | from { 185 | stroke-dashoffset: 5427.90283203125; 186 | } 187 | 188 | to { 189 | stroke-dashoffset: 0; 190 | } 191 | } 192 | 193 | @keyframes index_arrow { 194 | from { 195 | right: 10%; 196 | } 197 | 198 | to { 199 | right: 8%; 200 | } 201 | } -------------------------------------------------------------------------------- /assets/css/main.css: -------------------------------------------------------------------------------- 1 | body, html { 2 | height: 100%; 3 | width: 100%; 4 | font-family: "Arial", "Microsoft YaHei", "黑体", "宋体", sans-serif; 5 | } 6 | 7 | body, ul, li, a, h2, h3, div, p, span { 8 | padding: 0; 9 | margin: 0; 10 | box-sizing: border-box; 11 | } 12 | 13 | .clearfix:before, .clearfix:after { 14 | content: ''; 15 | display: table; 16 | } 17 | 18 | .clearfix:after { 19 | clear: both; 20 | } 21 | 22 | a { 23 | text-decoration: none; 24 | color: #333; 25 | } 26 | 27 | li { 28 | list-style: none; 29 | } 30 | 31 | .fl { 32 | float: left; 33 | } 34 | 35 | .fr { 36 | float: right; 37 | } 38 | 39 | table { 40 | border-collapse: collapse; 41 | } 42 | 43 | th, td { 44 | padding: 6px 13px; 45 | border: 1px solid #dfe2e5; 46 | font-size: 16px; 47 | } 48 | 49 | tr:nth-child(2n) { 50 | background: #f6f8fa; 51 | } 52 | 53 | /* 响应式 区块*/ 54 | 55 | @media (min-width:1200px) { 56 | .visible-lg { 57 | display: block; 58 | } 59 | .hidden-lg { 60 | display: none; 61 | } 62 | .col-lg-1 { 63 | width: 8.3333333333333333333333333333333%; 64 | } 65 | .col-lg-2 { 66 | width: 16.666666666666666666666666666667%; 67 | } 68 | .col-lg-3 { 69 | width: 25%; 70 | } 71 | .col-lg-4 { 72 | width: 33.333333333333333333333333333333%; 73 | } 74 | .col-lg-5 { 75 | width: 41.666666666666666666666666666667%; 76 | } 77 | .col-lg-6 { 78 | width: 50%; 79 | } 80 | .col-lg-7 { 81 | width: 58.333333333333333333333333333333%; 82 | } 83 | .col-lg-8 { 84 | width: 66.666666666666666666666666666667%; 85 | } 86 | .col-lg-9 { 87 | width: 75%; 88 | } 89 | .col-lg-10 { 90 | width: 83.333333333333333333333333333333%; 91 | } 92 | .col-lg-11 { 93 | width: 91.666666666666666666666666666667%; 94 | } 95 | .col-lg-12 { 96 | width: 100%; 97 | } 98 | } 99 | 100 | @media (min-width: 992px) and (max-width: 1200px) { 101 | .visible-md { 102 | display: block; 103 | } 104 | .hidden-md { 105 | display: none; 106 | } 107 | .col-md-1 { 108 | width: 8.3333333333333333333333333333333%; 109 | } 110 | .col-md-2 { 111 | width: 16.666666666666666666666666666667%; 112 | } 113 | .col-md-3 { 114 | width: 25%; 115 | } 116 | .col-md-4 { 117 | width: 33.333333333333333333333333333333%; 118 | } 119 | .col-md-5 { 120 | width: 41.666666666666666666666666666667%; 121 | } 122 | .col-md-6 { 123 | width: 50%; 124 | } 125 | .col-md-7 { 126 | width: 58.333333333333333333333333333333%; 127 | } 128 | .col-md-8 { 129 | width: 66.666666666666666666666666666667%; 130 | } 131 | .col-md-9 { 132 | width: 75%; 133 | } 134 | .col-md-10 { 135 | width: 83.333333333333333333333333333333%; 136 | } 137 | .col-md-11 { 138 | width: 91.666666666666666666666666666667%; 139 | } 140 | .col-md-12 { 141 | width: 100%; 142 | } 143 | } 144 | 145 | @media (min-width: 768px) and (max-width: 992px) { 146 | .visible-sm { 147 | display: block; 148 | } 149 | .hidden-sm { 150 | display: none; 151 | } 152 | .col-sm-1 { 153 | width: 8.3333333333333333333333333333333%; 154 | } 155 | .col-sm-2 { 156 | width: 16.666666666666666666666666666667%; 157 | } 158 | .col-sm-3 { 159 | width: 25%; 160 | } 161 | .col-sm-4 { 162 | width: 33.333333333333333333333333333333%; 163 | } 164 | .col-sm-5 { 165 | width: 41.666666666666666666666666666667%; 166 | } 167 | .col-sm-6 { 168 | width: 50%; 169 | } 170 | .col-sm-7 { 171 | width: 58.333333333333333333333333333333%; 172 | } 173 | .col-sm-8 { 174 | width: 66.666666666666666666666666666667%; 175 | } 176 | .col-sm-9 { 177 | width: 75%; 178 | } 179 | .col-sm-10 { 180 | width: 83.333333333333333333333333333333%; 181 | } 182 | .col-sm-11 { 183 | width: 91.666666666666666666666666666667%; 184 | } 185 | .col-sm-12 { 186 | width: 100%; 187 | } 188 | } 189 | 190 | @media (max-width: 768px) { 191 | .visible-xs { 192 | display: block; 193 | } 194 | .hidden-xs { 195 | display: none; 196 | } 197 | .col-xs-1 { 198 | width: 8.3333333333333333333333333333333%; 199 | } 200 | .col-xs-2 { 201 | width: 16.666666666666666666666666666667%; 202 | } 203 | .col-xs-3 { 204 | width: 25%; 205 | } 206 | .col-xs-4 { 207 | width: 33.333333333333333333333333333333%; 208 | } 209 | .col-xs-5 { 210 | width: 41.666666666666666666666666666667%; 211 | } 212 | .col-xs-6 { 213 | width: 50%; 214 | } 215 | .col-xs-7 { 216 | width: 58.333333333333333333333333333333%; 217 | } 218 | .col-xs-8 { 219 | width: 66.666666666666666666666666666667%; 220 | } 221 | .col-xs-9 { 222 | width: 75%; 223 | } 224 | .col-xs-10 { 225 | width: 83.333333333333333333333333333333%; 226 | } 227 | .col-xs-11 { 228 | width: 91.666666666666666666666666666667%; 229 | } 230 | .col-xs-12 { 231 | width: 100%; 232 | } 233 | } 234 | 235 | /* 自定义滚动条 */ 236 | 237 | ::-webkit-scrollbar { 238 | width: 5px; 239 | height: 5px; 240 | } 241 | 242 | ::-webkit-scrollbar-button { 243 | /* background-color: #FF7677; */ 244 | } 245 | 246 | ::-webkit-scrollbar-track { 247 | /* background: #eee; */ 248 | } 249 | 250 | /* 滚动条背景 */ 251 | 252 | ::-webkit-scrollbar-track-piece { 253 | /* background: black; */ 254 | } 255 | 256 | ::-webkit-scrollbar-thumb { 257 | background: #62c8f3; 258 | border-radius: 4px; 259 | } 260 | 261 | ::-webkit-scrollbar-corner { 262 | /* background: #82AFFF; */ 263 | } 264 | 265 | ::-webkit-scrollbar-resizer { 266 | /* background: #FF0BEE; */ 267 | } -------------------------------------------------------------------------------- /assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/favicon.ico -------------------------------------------------------------------------------- /assets/game-mobile/res/import/05/059bf150c.226aa.json: -------------------------------------------------------------------------------- 1 | [[{"__type__":"cc.SceneAsset","_name":"over","scene":{"__id__":1},"asyncLoadAssets":null},{"__type__":"cc.Scene","_name":"New Node","_children":[{"__id__":2}],"_anchorPoint":{"__type__":"cc.Vec2"},"autoReleaseAssets":false},{"__type__":"cc.Node","_name":"Canvas","_parent":{"__id__":1},"_children":[{"__id__":3},{"__id__":4}],"_components":[{"__type__":"cc.Canvas","node":{"__id__":2}}],"_id":"eaJKIjVx5L4qKSuxuLhOdj","_contentSize":{"__type__":"cc.Size","width":960,"height":640},"_position":{"__type__":"cc.Vec2","x":480,"y":320}},{"__type__":"cc.Node","_name":"over","_parent":{"__id__":2},"_components":[{"__type__":"cc.Sprite","node":{"__id__":3},"_spriteFrame":{"__uuid__":"f1ZCzppz5FGZ73ld14QDwN"}},{"__type__":"d814b10bIVK/6jbtbmAaIJv","node":{"__id__":3}}],"_contentSize":{"__type__":"cc.Size","width":1366,"height":728}},{"__type__":"cc.Node","_name":"over_label","_parent":{"__id__":2},"_components":[{"__type__":"cc.Label","node":{"__id__":4},"_useOriginalSize":false,"_N$string":"replay","_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.Button","node":{"__id__":4},"transition":1,"clickEvents":[{"__type__":"cc.ClickEvent","target":{"__id__":3},"component":"over","handler":"callback"}],"_N$target":{"__id__":4}}],"_color":{"__type__":"cc.Color","r":214,"g":214,"b":214},"_contentSize":{"__type__":"cc.Size","width":108.95,"height":40},"_position":{"__type__":"cc.Vec2","y":-114}}],{"__type__":"cc.SpriteFrame","content":{"name":"over","texture":"bfRUAkfKVKZIEjYgANgbZG","rect":[0,0,1366,728],"offset":[0,0],"originalSize":[1366,728]}}] -------------------------------------------------------------------------------- /assets/game-mobile/res/import/0b/0bf03e42d.fdac6.json: -------------------------------------------------------------------------------- 1 | [[{"__type__":"cc.SceneAsset","_name":"end","scene":{"__id__":1},"asyncLoadAssets":null},{"__type__":"cc.Scene","_name":"New Node","_children":[{"__id__":2}],"_anchorPoint":{"__type__":"cc.Vec2"},"autoReleaseAssets":false},{"__type__":"cc.Node","_name":"Canvas","_parent":{"__id__":1},"_children":[{"__id__":3},{"__id__":4}],"_components":[{"__type__":"cc.Canvas","node":{"__id__":2}}],"_id":"12TgMtoKJKh7LXP1Wq1B3O","_contentSize":{"__type__":"cc.Size","width":960,"height":640},"_position":{"__type__":"cc.Vec2","x":480,"y":320}},{"__type__":"cc.Node","_name":"end","_parent":{"__id__":2},"_components":[{"__type__":"cc.Sprite","node":{"__id__":3},"_spriteFrame":{"__uuid__":"a1frmknxNKW5oyVOINvdoP"}},{"__type__":"cb16eiBC35KXaE9n3yeLCmb","node":{"__id__":3}}],"_contentSize":{"__type__":"cc.Size","width":1366,"height":728},"_scaleX":0.8,"_scaleY":0.9},{"__type__":"cc.Node","_name":"label","_parent":{"__id__":2},"_components":[{"__type__":"cc.Label","node":{"__id__":4},"_useOriginalSize":false,"_N$string":"replay","_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.Button","node":{"__id__":4},"transition":1,"clickEvents":[{"__type__":"cc.ClickEvent","target":{"__id__":3},"component":"end","handler":"callback","customEventData":"play"}],"_N$target":{"__id__":4}}],"_color":{"__type__":"cc.Color","r":214,"g":214,"b":214},"_contentSize":{"__type__":"cc.Size","width":108.95,"height":40},"_position":{"__type__":"cc.Vec2","x":14,"y":-250}}],{"__type__":"cc.SpriteFrame","content":{"name":"end","texture":"a66oPMGuNFi4IB6LNop7/o","rect":[0,0,1366,728],"offset":[0,0],"originalSize":[1366,728]}}] -------------------------------------------------------------------------------- /assets/game-mobile/res/import/0c/0c008bb79.bac04.json: -------------------------------------------------------------------------------- 1 | [[{"__type__":"cc.Prefab","_name":"des","data":{"__id__":1},"asyncLoadAssets":null},{"__type__":"cc.Node","_name":"des","_components":[{"__type__":"cc.Label","node":{"__id__":1},"_useOriginalSize":false,"_actualFontSize":35,"_fontSize":35,"_N$string":"loading.....","_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.Animation","node":{"__id__":1},"_defaultClip":{"__uuid__":"f0WbK+GN9AwIoKWGypUY5t"},"_clips":[{"__uuid__":"f0WbK+GN9AwIoKWGypUY5t"}],"playOnLoad":true}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__id__":0},"fileId":"ab8lHF2ltP8onyY1hElVox"},"_color":{"__type__":"cc.Color"},"_contentSize":{"__type__":"cc.Size","width":161.5,"height":40},"_position":{"__type__":"cc.Vec2","x":-24,"y":-19}}],[{"__type__":"cc.SceneAsset","_name":"start","scene":{"__id__":1},"asyncLoadAssets":null},{"__type__":"cc.Scene","_name":"New Node","_children":[{"__id__":2}],"_anchorPoint":{"__type__":"cc.Vec2"},"autoReleaseAssets":false},{"__type__":"cc.Node","_name":"Canvas","_parent":{"__id__":1},"_children":[{"__id__":3}],"_components":[{"__type__":"cc.Canvas","node":{"__id__":2}}],"_id":"26R7K1zgtE17DYWFUM+ZCz","_contentSize":{"__type__":"cc.Size","width":960,"height":640},"_position":{"__type__":"cc.Vec2","x":480,"y":320}},{"__type__":"cc.Node","_name":"welcome","_parent":{"__id__":2},"_children":[{"__id__":4}],"_components":[{"__type__":"cc.Sprite","node":{"__id__":3},"_spriteFrame":{"__uuid__":"ecCHNs8O1DTLzovcMW5iJZ"}}],"_contentSize":{"__type__":"cc.Size","width":1366,"height":728},"_scaleX":0.9,"_scaleY":0.9},{"__type__":"cc.Node","_name":"play","_parent":{"__id__":3},"_components":[{"__type__":"cc.Label","node":{"__id__":4},"_useOriginalSize":false,"_actualFontSize":80,"_fontSize":80,"_lineHeight":80,"_N$string":"play","_N$horizontalAlign":1,"_N$verticalAlign":1,"_N$fontFamily":"Consolas"},{"__type__":"39ff3qDz7ZFe6+K79N+50zo","node":{"__id__":4},"target":{"__uuid__":"10RrGJXO9Pdbu/khvXsdLu"}},{"__type__":"cc.Button","node":{"__id__":4},"transition":1,"hoverColor":{"__type__":"cc.Color","r":151,"g":151,"b":151},"clickEvents":[{"__type__":"cc.ClickEvent","target":{"__id__":4},"component":"play","handler":"callback","customEventData":"play"}],"_N$normalColor":{"__type__":"cc.Color","r":68,"g":68,"b":68},"_N$target":{"__id__":4}}],"_color":{"__type__":"cc.Color","r":68,"g":68,"b":68},"_contentSize":{"__type__":"cc.Size","width":175.94,"height":80},"_position":{"__type__":"cc.Vec2","y":-223}}],{"__type__":"cc.SpriteFrame","content":{"name":"welcome","texture":"7d14sQahlAM5t6Rmj/0jCp","rect":[0,0,1366,728],"offset":[0,0],"originalSize":[1366,728]}},{"__type__":"cc.AnimationClip","_name":"loading","_duration":1,"speed":0.1,"wrapMode":2,"curveData":{"comps":{"cc.Label":{"string":[{"frame":0,"value":"loading"},{"frame":0.16666666666666666,"value":"loading."},{"frame":0.3333333333333333,"value":"loading.."},{"frame":0.5,"value":"loading..."},{"frame":0.6666666666666666,"value":"loading...."},{"frame":0.8333333333333334,"value":"loading....."},{"frame":1,"value":"loading......"}]}}}}] -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/0.650ee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/0.650ee.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/1.26895.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/1.26895.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/10.1a7f2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/10.1a7f2.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/11.90b28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/11.90b28.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/12.8d802.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/12.8d802.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/13.17891.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/13.17891.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/14.a26a5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/14.a26a5.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/15.1099b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/15.1099b.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/16.bb2c2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/16.bb2c2.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/17.54ea3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/17.54ea3.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/18.4dea3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/18.4dea3.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/19.10fa9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/19.10fa9.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/2.ccf8a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/2.ccf8a.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/20.b4cd1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/20.b4cd1.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/21.b1b64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/21.b1b64.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/22.16f94.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/22.16f94.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/23.d91c7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/23.d91c7.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/24.0189c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/24.0189c.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/25.a4586.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/25.a4586.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/26.f4bbf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/26.f4bbf.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/27.579ff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/27.579ff.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/28.32782.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/28.32782.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/29.8e94b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/29.8e94b.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/3.08d1e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/3.08d1e.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/30.edc99.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/30.edc99.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/31.0fc53.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/31.0fc53.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/32.3d751.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/32.3d751.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/33.bf02f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/33.bf02f.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/34.268d4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/34.268d4.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/35.fca22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/35.fca22.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/4.98746.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/4.98746.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/5.1cfc3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/5.1cfc3.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/6.41a4c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/6.41a4c.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/7.c61af.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/7.c61af.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/8.f79f7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/8.f79f7.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/9.4fb17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/badflower/9.4fb17.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/end.54c00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/end.54c00.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/fire/fireL/0.1cf51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/fire/fireL/0.1cf51.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/fire/fireL/1.3b259.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/fire/fireL/1.3b259.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/fire/fireL/2.0b0ac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/fire/fireL/2.0b0ac.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/fire/fireL/3.23a22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/fire/fireL/3.23a22.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/fire/fireL/4.cb522.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/fire/fireL/4.cb522.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/map1.ba2dc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/map1.ba2dc.jpg -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/0.7d943.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/0.7d943.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/1.7f21d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/1.7f21d.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/10.7018f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/10.7018f.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/11.0060c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/11.0060c.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/12.dbbc7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/12.dbbc7.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/13.646d8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/13.646d8.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/14.6737c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/14.6737c.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/15.249e8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/15.249e8.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/16.8171e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/16.8171e.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/17.fc462.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/17.fc462.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/18.2207e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/18.2207e.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/19.06cea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/19.06cea.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/2.1903a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/2.1903a.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/20.db76c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/20.db76c.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/21.5f894.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/21.5f894.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/3.5c7a8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/3.5c7a8.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/4.64741.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/4.64741.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/5.51545.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/5.51545.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/6.1d2a9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/6.1d2a9.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/7.08651.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/7.08651.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/8.59e41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/8.59e41.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/9.72df1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/9.72df1.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/jump.c4360.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/jump.c4360.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/stand.56adb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/stand.56adb.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/0.ad8f2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/0.ad8f2.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/1.7a089.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/1.7a089.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/10.dbcc4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/10.dbcc4.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/11.365c6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/11.365c6.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/12.18f58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/12.18f58.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/13.b4d03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/13.b4d03.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/14.c1d97.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/14.c1d97.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/15.f3ed3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/15.f3ed3.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/16.b147d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/16.b147d.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/17.835d4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/17.835d4.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/18.93f24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/18.93f24.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/19.56ddd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/19.56ddd.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/2.6b38a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/2.6b38a.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/20.7d71e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/20.7d71e.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/21.214aa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/21.214aa.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/3.0948d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/3.0948d.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/4.bc8a3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/4.bc8a3.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/5.03779.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/5.03779.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/6.f1b4a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/6.f1b4a.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/7.d938e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/7.d938e.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/8.d34ab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/8.d34ab.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/9.aad82.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/9.aad82.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/jump.cfd20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/jump.cfd20.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/stand.bf3b0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/stand.bf3b0.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/over.ce95a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/over.ce95a.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/pipe_01.c6ff8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/pipe_01.c6ff8.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/wall/afterabnormalwall.16bc4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/wall/afterabnormalwall.16bc4.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/welcome.b2234.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/welcome.b2234.jpg -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/winS.cbd09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/Super Mario Bros/winS.cbd09.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/back.dbb60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/back.dbb60.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/go.6287e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/go.6287e.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/jump.c1117.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/jump.c1117.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/logo/bootstrap-stack.0da25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/logo/bootstrap-stack.0da25.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/logo/echarts-footer-logo.261af.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/logo/echarts-footer-logo.261af.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/logo/git.25ee3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/logo/git.25ee3.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/logo/jQuery.c2fbd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/logo/jQuery.c2fbd.jpg -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/logo/vue.4b4c3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/logo/vue.4b4c3.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/Texture/logo/webpack.685ba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/Texture/logo/webpack.685ba.png -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/audio/end.95f4d.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/audio/end.95f4d.mp3 -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/audio/hover.afd27.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/audio/hover.afd27.mp3 -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/audio/over .33319.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/audio/over .33319.mp3 -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/audio/playing .e4fb1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/audio/playing .e4fb1.mp3 -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-assets/audio/start .fe63a.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-assets/audio/start .fe63a.mp3 -------------------------------------------------------------------------------- /assets/game-mobile/res/raw-internal/image/default_sprite.68270.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/res/raw-internal/image/default_sprite.68270.png -------------------------------------------------------------------------------- /assets/game-mobile/splash.03ce1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game-mobile/splash.03ce1.png -------------------------------------------------------------------------------- /assets/game-mobile/style-desktop.ec961.css: -------------------------------------------------------------------------------- 1 | body { 2 | cursor: default; 3 | padding: 0; 4 | border: 0; 5 | margin: 0; 6 | 7 | text-align: center; 8 | background-color: white; 9 | font-family: Helvetica, Verdana, Arial, sans-serif; 10 | } 11 | 12 | body, canvas, div { 13 | outline: none; 14 | -moz-user-select: none; 15 | -webkit-user-select: none; 16 | -ms-user-select: none; 17 | -khtml-user-select: none; 18 | -webkit-tap-highlight-color: rgba(0, 0, 0, 0); 19 | } 20 | 21 | /* Remove spin of input type number */ 22 | input::-webkit-outer-spin-button, 23 | input::-webkit-inner-spin-button { 24 | /* display: none; <- Crashes Chrome on hover */ 25 | -webkit-appearance: none; 26 | margin: 0; /* <-- Apparently some margin are still there even though it's hidden */ 27 | } 28 | 29 | #Cocos2dGameContainer { 30 | position: absolute; 31 | margin: 0; 32 | overflow: hidden; 33 | left: 0px; 34 | top: 0px; 35 | } 36 | 37 | canvas { 38 | background-color: rgba(0, 0, 0, 0); 39 | } 40 | 41 | a:link, a:visited { 42 | color: #000; 43 | } 44 | 45 | a:active, a:hover { 46 | color: #666; 47 | } 48 | 49 | p.header { 50 | font-size: small; 51 | } 52 | 53 | p.footer { 54 | font-size: x-small; 55 | } 56 | 57 | #splash { 58 | position: absolute; 59 | top: 0; 60 | left: 0; 61 | width: 100%; 62 | height: 100%; 63 | 64 | background: #171717 url(./splash.03ce1.png) no-repeat center; 65 | background-size: 40%; 66 | } 67 | 68 | .progress-bar { 69 | background-color: #1a1a1a; 70 | position: absolute; 71 | left: 50%; 72 | top: 80%; 73 | height: 26px; 74 | padding: 5px; 75 | width: 350px; 76 | margin: 0 -175px; 77 | border-radius: 5px; 78 | box-shadow: 0 1px 5px #000 inset, 0 1px 0 #444; 79 | } 80 | 81 | .progress-bar span { 82 | display: block; 83 | height: 100%; 84 | border-radius: 3px; 85 | box-shadow: 0 1px 0 rgba(255, 255, 255, .5) inset; 86 | transition: width .4s ease-in-out; 87 | background-color: #34c2e3; 88 | } 89 | 90 | .stripes span { 91 | background-size: 30px 30px; 92 | background-image: linear-gradient(135deg, rgba(255, 255, 255, .15) 25%, transparent 25%, 93 | transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, 94 | transparent 75%, transparent); 95 | 96 | animation: animate-stripes 1s linear infinite; 97 | } 98 | 99 | @keyframes animate-stripes { 100 | 0% {background-position: 0 0;} 100% {background-position: 60px 0;} 101 | } 102 | 103 | h1 { 104 | color: #444; 105 | text-shadow: 3px 3px 15px; 106 | } 107 | 108 | #GameDiv { 109 | width: 800px; 110 | height: 450px; 111 | margin: 0 auto; 112 | background: black; 113 | position:relative; 114 | border:5px solid black; 115 | border-radius: 10px; 116 | box-shadow: 0 5px 50px #333 117 | } 118 | -------------------------------------------------------------------------------- /assets/game-mobile/style-mobile.72851.css: -------------------------------------------------------------------------------- 1 | html { 2 | -ms-touch-action: none; 3 | } 4 | 5 | body, canvas, div { 6 | display: block; 7 | outline: none; 8 | -webkit-tap-highlight-color: rgba(0, 0, 0, 0); 9 | 10 | -moz-user-select: none; 11 | -webkit-user-select: none; 12 | -ms-user-select: none; 13 | -khtml-user-select: none; 14 | -webkit-tap-highlight-color: rgba(0, 0, 0, 0); 15 | } 16 | 17 | /* Remove spin of input type number */ 18 | input::-webkit-outer-spin-button, 19 | input::-webkit-inner-spin-button { 20 | /* display: none; <- Crashes Chrome on hover */ 21 | -webkit-appearance: none; 22 | margin: 0; /* <-- Apparently some margin are still there even though it's hidden */ 23 | } 24 | 25 | body { 26 | position: absolute; 27 | top: 0; 28 | left: 0; 29 | width: 100%; 30 | height: 100%; 31 | padding: 0; 32 | border: 0; 33 | margin: 0; 34 | 35 | cursor: default; 36 | color: #888; 37 | background-color: #333; 38 | 39 | text-align: center; 40 | font-family: Helvetica, Verdana, Arial, sans-serif; 41 | 42 | display: flex; 43 | flex-direction: column; 44 | } 45 | 46 | #Cocos2dGameContainer { 47 | position: absolute; 48 | margin: 0; 49 | overflow: hidden; 50 | left: 0px; 51 | top: 0px; 52 | 53 | display: -webkit-box; 54 | -webkit-box-orient: horizontal; 55 | -webkit-box-align: center; 56 | -webkit-box-pack: center; 57 | } 58 | 59 | canvas { 60 | background-color: rgba(0, 0, 0, 0); 61 | } 62 | 63 | a:link, a:visited { 64 | color: #666; 65 | } 66 | 67 | a:active, a:hover { 68 | color: #666; 69 | } 70 | 71 | p.header { 72 | font-size: small; 73 | } 74 | 75 | p.footer { 76 | font-size: x-small; 77 | } 78 | 79 | #splash { 80 | position: absolute; 81 | top: 0; 82 | left: 0; 83 | width: 100%; 84 | height: 100%; 85 | background: #171717 url(./splash.03ce1.png) no-repeat center; 86 | background-size: 40%; 87 | } 88 | 89 | .progress-bar { 90 | background-color: #1a1a1a; 91 | position: absolute; 92 | left: 25%; 93 | top: 80%; 94 | height: 15px; 95 | padding: 5px; 96 | width: 50%; 97 | /*margin: 0 -175px; */ 98 | border-radius: 5px; 99 | box-shadow: 0 1px 5px #000 inset, 0 1px 0 #444; 100 | } 101 | 102 | .progress-bar span { 103 | display: block; 104 | height: 100%; 105 | border-radius: 3px; 106 | box-shadow: 0 1px 0 rgba(255, 255, 255, .5) inset; 107 | transition: width .4s ease-in-out; 108 | background-color: #34c2e3; 109 | } 110 | 111 | .stripes span { 112 | background-size: 30px 30px; 113 | background-image: linear-gradient(135deg, rgba(255, 255, 255, .15) 25%, transparent 25%, 114 | transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, 115 | transparent 75%, transparent); 116 | 117 | animation: animate-stripes 1s linear infinite; 118 | } 119 | 120 | @keyframes animate-stripes { 121 | 0% {background-position: 0 0;} 100% {background-position: 60px 0;} 122 | } 123 | -------------------------------------------------------------------------------- /assets/game/res/import/05/059bf150c.json: -------------------------------------------------------------------------------- 1 | [[{"__type__":"cc.SceneAsset","_name":"over","scene":{"__id__":1},"asyncLoadAssets":null},{"__type__":"cc.Scene","_name":"New Node","_children":[{"__id__":2}],"_anchorPoint":{"__type__":"cc.Vec2"},"autoReleaseAssets":false},{"__type__":"cc.Node","_name":"Canvas","_parent":{"__id__":1},"_children":[{"__id__":3},{"__id__":4}],"_components":[{"__type__":"cc.Canvas","node":{"__id__":2}}],"_id":"eaJKIjVx5L4qKSuxuLhOdj","_contentSize":{"__type__":"cc.Size","width":960,"height":640},"_position":{"__type__":"cc.Vec2","x":480,"y":320}},{"__type__":"cc.Node","_name":"over","_parent":{"__id__":2},"_components":[{"__type__":"cc.Sprite","node":{"__id__":3},"_spriteFrame":{"__uuid__":"f1ZCzppz5FGZ73ld14QDwN"}},{"__type__":"d814b10bIVK/6jbtbmAaIJv","node":{"__id__":3}}],"_contentSize":{"__type__":"cc.Size","width":1366,"height":728}},{"__type__":"cc.Node","_name":"over_label","_parent":{"__id__":2},"_components":[{"__type__":"cc.Label","node":{"__id__":4},"_useOriginalSize":false,"_N$string":"replay","_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.Button","node":{"__id__":4},"transition":1,"clickEvents":[{"__type__":"cc.ClickEvent","target":{"__id__":3},"component":"over","handler":"callback"}],"_N$target":{"__id__":4}}],"_color":{"__type__":"cc.Color","r":214,"g":214,"b":214},"_contentSize":{"__type__":"cc.Size","width":108.95,"height":40},"_position":{"__type__":"cc.Vec2","y":-114}}],{"__type__":"cc.SpriteFrame","content":{"name":"over","texture":"bfRUAkfKVKZIEjYgANgbZG","rect":[0,0,1366,728],"offset":[0,0],"originalSize":[1366,728]}}] -------------------------------------------------------------------------------- /assets/game/res/import/0b/0bf03e42d.json: -------------------------------------------------------------------------------- 1 | [[{"__type__":"cc.SceneAsset","_name":"end","scene":{"__id__":1},"asyncLoadAssets":null},{"__type__":"cc.Scene","_name":"New Node","_children":[{"__id__":2}],"_anchorPoint":{"__type__":"cc.Vec2"},"autoReleaseAssets":false},{"__type__":"cc.Node","_name":"Canvas","_parent":{"__id__":1},"_children":[{"__id__":3},{"__id__":4}],"_components":[{"__type__":"cc.Canvas","node":{"__id__":2}}],"_id":"12TgMtoKJKh7LXP1Wq1B3O","_contentSize":{"__type__":"cc.Size","width":960,"height":640},"_position":{"__type__":"cc.Vec2","x":480,"y":320}},{"__type__":"cc.Node","_name":"end","_parent":{"__id__":2},"_components":[{"__type__":"cc.Sprite","node":{"__id__":3},"_spriteFrame":{"__uuid__":"a1frmknxNKW5oyVOINvdoP"}},{"__type__":"cb16eiBC35KXaE9n3yeLCmb","node":{"__id__":3}}],"_contentSize":{"__type__":"cc.Size","width":1366,"height":728},"_scaleX":0.8,"_scaleY":0.9},{"__type__":"cc.Node","_name":"label","_parent":{"__id__":2},"_components":[{"__type__":"cc.Label","node":{"__id__":4},"_useOriginalSize":false,"_N$string":"replay","_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.Button","node":{"__id__":4},"transition":1,"clickEvents":[{"__type__":"cc.ClickEvent","target":{"__id__":3},"component":"end","handler":"callback","customEventData":"play"}],"_N$target":{"__id__":4}}],"_color":{"__type__":"cc.Color","r":214,"g":214,"b":214},"_contentSize":{"__type__":"cc.Size","width":108.95,"height":40},"_position":{"__type__":"cc.Vec2","x":14,"y":-250}}],{"__type__":"cc.SpriteFrame","content":{"name":"end","texture":"a66oPMGuNFi4IB6LNop7/o","rect":[0,0,1366,728],"offset":[0,0],"originalSize":[1366,728]}}] -------------------------------------------------------------------------------- /assets/game/res/import/0c/0c008bb79.json: -------------------------------------------------------------------------------- 1 | [[{"__type__":"cc.Prefab","_name":"des","data":{"__id__":1},"asyncLoadAssets":null},{"__type__":"cc.Node","_name":"des","_components":[{"__type__":"cc.Label","node":{"__id__":1},"_useOriginalSize":false,"_N$string":"loading.....","_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.Animation","node":{"__id__":1},"_defaultClip":{"__uuid__":"f0WbK+GN9AwIoKWGypUY5t"},"_clips":[{"__uuid__":"f0WbK+GN9AwIoKWGypUY5t"}],"playOnLoad":true}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__id__":0},"fileId":"eeLaQH0JVAO5YSgmZL9pZz"},"_color":{"__type__":"cc.Color"},"_contentSize":{"__type__":"cc.Size","width":184.57,"height":40},"_position":{"__type__":"cc.Vec2","x":-24,"y":-19}}],[{"__type__":"cc.SceneAsset","_name":"start","scene":{"__id__":1},"asyncLoadAssets":null},{"__type__":"cc.Scene","_name":"New Node","_children":[{"__id__":2}],"_anchorPoint":{"__type__":"cc.Vec2"},"autoReleaseAssets":false},{"__type__":"cc.Node","_name":"Canvas","_parent":{"__id__":1},"_children":[{"__id__":3}],"_components":[{"__type__":"cc.Canvas","node":{"__id__":2}}],"_id":"26R7K1zgtE17DYWFUM+ZCz","_contentSize":{"__type__":"cc.Size","width":960,"height":640},"_position":{"__type__":"cc.Vec2","x":480,"y":320}},{"__type__":"cc.Node","_name":"welcome","_parent":{"__id__":2},"_children":[{"__id__":4}],"_components":[{"__type__":"cc.Sprite","node":{"__id__":3},"_spriteFrame":{"__uuid__":"ecCHNs8O1DTLzovcMW5iJZ"}}],"_contentSize":{"__type__":"cc.Size","width":1366,"height":728},"_scaleX":0.9,"_scaleY":0.9},{"__type__":"cc.Node","_name":"play","_parent":{"__id__":3},"_components":[{"__type__":"cc.Label","node":{"__id__":4},"_useOriginalSize":false,"_actualFontSize":80,"_fontSize":80,"_lineHeight":80,"_N$string":"play","_N$horizontalAlign":1,"_N$verticalAlign":1,"_N$fontFamily":"Consolas"},{"__type__":"39ff3qDz7ZFe6+K79N+50zo","node":{"__id__":4},"target":{"__uuid__":"10RrGJXO9Pdbu/khvXsdLu"}},{"__type__":"cc.Button","node":{"__id__":4},"transition":1,"hoverColor":{"__type__":"cc.Color","r":151,"g":151,"b":151},"clickEvents":[{"__type__":"cc.ClickEvent","target":{"__id__":4},"component":"play","handler":"callback","customEventData":"play"}],"_N$normalColor":{"__type__":"cc.Color","r":68,"g":68,"b":68},"_N$target":{"__id__":4}}],"_color":{"__type__":"cc.Color","r":68,"g":68,"b":68},"_contentSize":{"__type__":"cc.Size","width":175.94,"height":80},"_position":{"__type__":"cc.Vec2","y":-223}}],{"__type__":"cc.SpriteFrame","content":{"name":"welcome","texture":"7d14sQahlAM5t6Rmj/0jCp","rect":[0,0,1366,728],"offset":[0,0],"originalSize":[1366,728]}},{"__type__":"cc.AnimationClip","_name":"loading","_duration":1,"speed":0.1,"wrapMode":2,"curveData":{"comps":{"cc.Label":{"string":[{"frame":0,"value":"loading"},{"frame":0.16666666666666666,"value":"loading."},{"frame":0.3333333333333333,"value":"loading.."},{"frame":0.5,"value":"loading..."},{"frame":0.6666666666666666,"value":"loading...."},{"frame":0.8333333333333334,"value":"loading....."},{"frame":1,"value":"loading......"}]}}}}] -------------------------------------------------------------------------------- /assets/game/res/import/0d/0d6a13f89.json: -------------------------------------------------------------------------------- 1 | [[{"__type__":"cc.SceneAsset","_name":"start","scene":{"__id__":1},"asyncLoadAssets":null},{"__type__":"cc.Scene","_name":"New Node","_children":[{"__id__":2}],"_anchorPoint":{"__type__":"cc.Vec2"},"autoReleaseAssets":null},{"__type__":"cc.Node","_name":"Canvas","_parent":{"__id__":1},"_children":[{"__id__":3}],"_components":[{"__type__":"cc.Canvas","node":{"__id__":2}}],"_id":"26R7K1zgtE17DYWFUM+ZCz","_contentSize":{"__type__":"cc.Size","width":960,"height":640},"_position":{"__type__":"cc.Vec2","x":480,"y":320}},{"__type__":"cc.Node","_name":"welcome","_parent":{"__id__":2},"_children":[{"__id__":4}],"_components":[{"__type__":"cc.Sprite","node":{"__id__":3},"_spriteFrame":{"__uuid__":"ecCHNs8O1DTLzovcMW5iJZ"}}],"_contentSize":{"__type__":"cc.Size","width":1366,"height":728},"_scaleX":0.9,"_scaleY":0.9},{"__type__":"cc.Node","_name":"play","_parent":{"__id__":3},"_components":[{"__type__":"cc.Label","node":{"__id__":4},"_useOriginalSize":false,"_actualFontSize":80,"_fontSize":80,"_lineHeight":80,"_N$string":"play","_N$horizontalAlign":1,"_N$verticalAlign":1,"_N$fontFamily":"Consolas"},{"__type__":"39ff3qDz7ZFe6+K79N+50zo","node":{"__id__":4}},{"__type__":"cc.Button","node":{"__id__":4},"transition":1,"hoverColor":{"__type__":"cc.Color","r":151,"g":151,"b":151},"clickEvents":[{"__type__":"cc.ClickEvent","target":{"__id__":4},"component":"play","handler":"callback","customEventData":"play"}],"_N$normalColor":{"__type__":"cc.Color","r":68,"g":68,"b":68},"_N$target":{"__id__":4}}],"_color":{"__type__":"cc.Color","r":68,"g":68,"b":68},"_contentSize":{"__type__":"cc.Size","width":175.94,"height":80},"_position":{"__type__":"cc.Vec2","y":-223}}],{"__type__":"cc.SpriteFrame","content":{"name":"welcome","texture":"7d14sQahlAM5t6Rmj/0jCp","rect":[0,0,1366,728],"offset":[0,0],"originalSize":[1366,728]}}] -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/0.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/1.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/10.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/11.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/12.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/13.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/14.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/15.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/16.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/17.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/18.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/19.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/2.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/20.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/21.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/22.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/23.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/24.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/25.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/26.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/27.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/28.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/29.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/3.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/30.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/31.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/32.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/33.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/34.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/35.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/4.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/5.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/6.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/7.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/8.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/badflower/9.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/end.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/fire/fireL/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/fire/fireL/0.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/fire/fireL/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/fire/fireL/1.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/fire/fireL/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/fire/fireL/2.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/fire/fireL/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/fire/fireL/3.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/fire/fireL/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/fire/fireL/4.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/map.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/map.jpg -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/map1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/map1.jpg -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioL/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioL/0.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioL/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioL/1.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioL/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioL/10.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioL/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioL/11.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioL/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioL/12.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioL/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioL/13.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioL/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioL/14.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioL/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioL/15.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioL/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioL/16.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioL/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioL/17.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioL/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioL/18.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioL/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioL/19.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioL/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioL/2.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioL/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioL/20.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioL/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioL/21.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioL/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioL/3.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioL/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioL/4.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioL/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioL/5.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioL/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioL/6.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioL/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioL/7.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioL/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioL/8.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioL/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioL/9.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioL/jump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioL/jump.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioL/stand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioL/stand.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioR/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioR/0.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioR/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioR/1.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioR/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioR/10.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioR/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioR/11.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioR/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioR/12.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioR/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioR/13.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioR/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioR/14.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioR/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioR/15.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioR/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioR/16.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioR/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioR/17.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioR/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioR/18.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioR/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioR/19.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioR/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioR/2.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioR/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioR/20.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioR/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioR/21.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioR/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioR/3.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioR/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioR/4.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioR/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioR/5.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioR/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioR/6.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioR/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioR/7.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioR/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioR/8.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioR/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioR/9.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioR/jump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioR/jump.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioR/stand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/bigmario/marioR/stand.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/0.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/1.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/10.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/11.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/12.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/13.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/14.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/15.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/16.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/17.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/18.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/19.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/2.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/20.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/21.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/3.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/4.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/5.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/6.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/7.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/8.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/9.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/jump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/jump.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/stand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioL/stand.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/0.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/1.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/10.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/11.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/12.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/13.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/14.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/15.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/16.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/17.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/18.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/19.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/2.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/20.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/21.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/3.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/4.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/5.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/6.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/7.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/8.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/9.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/jump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/jump.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/stand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/mario/smallmario/marioR/stand.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/over.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/pipe_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/pipe_01.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/wall/afterabnormalwall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/wall/afterabnormalwall.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/welcome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/welcome.jpg -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/Super Mario Bros/winS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/Super Mario Bros/winS.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/back.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/go.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/jump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/jump.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/logo/bootstrap-stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/logo/bootstrap-stack.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/logo/echarts-footer-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/logo/echarts-footer-logo.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/logo/git.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/logo/git.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/logo/jQuery.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/logo/jQuery.jpg -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/logo/vue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/logo/vue.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/Texture/logo/webpack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/Texture/logo/webpack.png -------------------------------------------------------------------------------- /assets/game/res/raw-assets/audio/end.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/audio/end.mp3 -------------------------------------------------------------------------------- /assets/game/res/raw-assets/audio/hover.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/audio/hover.mp3 -------------------------------------------------------------------------------- /assets/game/res/raw-assets/audio/over .mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/audio/over .mp3 -------------------------------------------------------------------------------- /assets/game/res/raw-assets/audio/playing .mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/audio/playing .mp3 -------------------------------------------------------------------------------- /assets/game/res/raw-assets/audio/start .mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-assets/audio/start .mp3 -------------------------------------------------------------------------------- /assets/game/res/raw-internal/image/default_sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/res/raw-internal/image/default_sprite.png -------------------------------------------------------------------------------- /assets/game/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/game/splash.png -------------------------------------------------------------------------------- /assets/game/style-desktop.css: -------------------------------------------------------------------------------- 1 | body { 2 | cursor: default; 3 | /* padding: 0; */ 4 | border: 0; 5 | margin: 0; 6 | 7 | text-align: center; 8 | background-color: white; 9 | font-family: Helvetica, Verdana, Arial, sans-serif; 10 | } 11 | 12 | body, canvas, div { 13 | outline: none; 14 | -moz-user-select: none; 15 | -webkit-user-select: none; 16 | -ms-user-select: none; 17 | -khtml-user-select: none; 18 | -webkit-tap-highlight-color: rgba(0, 0, 0, 0); 19 | } 20 | 21 | /* Remove spin of input type number */ 22 | input::-webkit-outer-spin-button, 23 | input::-webkit-inner-spin-button { 24 | /* display: none; <- Crashes Chrome on hover */ 25 | -webkit-appearance: none; 26 | margin: 0; /* <-- Apparently some margin are still there even though it's hidden */ 27 | } 28 | 29 | #Cocos2dGameContainer { 30 | position: absolute; 31 | margin: 0; 32 | overflow: hidden; 33 | left: 0px; 34 | top: 0px; 35 | } 36 | 37 | canvas { 38 | background-color: rgba(0, 0, 0, 0); 39 | } 40 | 41 | a:link, a:visited { 42 | color: #000; 43 | } 44 | 45 | a:active, a:hover { 46 | color: #666; 47 | } 48 | 49 | p.header { 50 | font-size: small; 51 | } 52 | 53 | p.footer { 54 | font-size: x-small; 55 | } 56 | 57 | #splash { 58 | position: absolute; 59 | top: 0; 60 | left: 0; 61 | width: 100%; 62 | height: 100%; 63 | 64 | background: #171717 url(./splash.png) no-repeat center; 65 | background-size: 40%; 66 | } 67 | 68 | .progress-bar { 69 | background-color: #1a1a1a; 70 | position: absolute; 71 | left: 50%; 72 | top: 80%; 73 | height: 26px; 74 | padding: 5px; 75 | width: 350px; 76 | margin: 0 -175px; 77 | border-radius: 5px; 78 | box-shadow: 0 1px 5px #000 inset, 0 1px 0 #444; 79 | } 80 | 81 | .progress-bar span { 82 | display: block; 83 | height: 100%; 84 | border-radius: 3px; 85 | box-shadow: 0 1px 0 rgba(255, 255, 255, .5) inset; 86 | transition: width .4s ease-in-out; 87 | background-color: #34c2e3; 88 | } 89 | 90 | .stripes span { 91 | background-size: 30px 30px; 92 | background-image: linear-gradient(135deg, rgba(255, 255, 255, .15) 25%, transparent 25%, 93 | transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, 94 | transparent 75%, transparent); 95 | 96 | animation: animate-stripes 1s linear infinite; 97 | } 98 | 99 | @keyframes animate-stripes { 100 | 0% {background-position: 0 0;} 100% {background-position: 60px 0;} 101 | } 102 | 103 | h1 { 104 | color: #444; 105 | text-shadow: 3px 3px 15px; 106 | } 107 | 108 | #GameDiv { 109 | width: 800px; 110 | height: 450px; 111 | margin: 0 auto; 112 | background: black; 113 | position:relative; 114 | border:5px solid black; 115 | border-radius: 10px; 116 | box-shadow: 0 5px 50px #333 117 | } 118 | -------------------------------------------------------------------------------- /assets/game/style-mobile.css: -------------------------------------------------------------------------------- 1 | html { 2 | -ms-touch-action: none; 3 | } 4 | 5 | body, canvas, div { 6 | display: block; 7 | outline: none; 8 | -webkit-tap-highlight-color: rgba(0, 0, 0, 0); 9 | 10 | -moz-user-select: none; 11 | -webkit-user-select: none; 12 | -ms-user-select: none; 13 | -khtml-user-select: none; 14 | -webkit-tap-highlight-color: rgba(0, 0, 0, 0); 15 | } 16 | 17 | /* Remove spin of input type number */ 18 | input::-webkit-outer-spin-button, 19 | input::-webkit-inner-spin-button { 20 | /* display: none; <- Crashes Chrome on hover */ 21 | -webkit-appearance: none; 22 | margin: 0; /* <-- Apparently some margin are still there even though it's hidden */ 23 | } 24 | 25 | body { 26 | position: absolute; 27 | top: 0; 28 | left: 0; 29 | width: 100%; 30 | height: 100%; 31 | padding: 0; 32 | border: 0; 33 | margin: 0; 34 | 35 | cursor: default; 36 | color: #888; 37 | background-color: #333; 38 | 39 | text-align: center; 40 | font-family: Helvetica, Verdana, Arial, sans-serif; 41 | 42 | display: flex; 43 | flex-direction: column; 44 | } 45 | 46 | #Cocos2dGameContainer { 47 | position: absolute; 48 | margin: 0; 49 | overflow: hidden; 50 | left: 0px; 51 | top: 0px; 52 | 53 | display: -webkit-box; 54 | -webkit-box-orient: horizontal; 55 | -webkit-box-align: center; 56 | -webkit-box-pack: center; 57 | } 58 | 59 | canvas { 60 | background-color: rgba(0, 0, 0, 0); 61 | } 62 | 63 | a:link, a:visited { 64 | color: #666; 65 | } 66 | 67 | a:active, a:hover { 68 | color: #666; 69 | } 70 | 71 | p.header { 72 | font-size: small; 73 | } 74 | 75 | p.footer { 76 | font-size: x-small; 77 | } 78 | 79 | #splash { 80 | position: absolute; 81 | top: 0; 82 | left: 0; 83 | width: 100%; 84 | height: 100%; 85 | background: #171717 url(./splash.png) no-repeat center; 86 | background-size: 40%; 87 | } 88 | 89 | .progress-bar { 90 | background-color: #1a1a1a; 91 | position: absolute; 92 | left: 25%; 93 | top: 80%; 94 | height: 15px; 95 | padding: 5px; 96 | width: 50%; 97 | /*margin: 0 -175px; */ 98 | border-radius: 5px; 99 | box-shadow: 0 1px 5px #000 inset, 0 1px 0 #444; 100 | } 101 | 102 | .progress-bar span { 103 | display: block; 104 | height: 100%; 105 | border-radius: 3px; 106 | box-shadow: 0 1px 0 rgba(255, 255, 255, .5) inset; 107 | transition: width .4s ease-in-out; 108 | background-color: #34c2e3; 109 | } 110 | 111 | .stripes span { 112 | background-size: 30px 30px; 113 | background-image: linear-gradient(135deg, rgba(255, 255, 255, .15) 25%, transparent 25%, 114 | transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, 115 | transparent 75%, transparent); 116 | 117 | animation: animate-stripes 1s linear infinite; 118 | } 119 | 120 | @keyframes animate-stripes { 121 | 0% {background-position: 0 0;} 100% {background-position: 60px 0;} 122 | } 123 | -------------------------------------------------------------------------------- /assets/images/banner_default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/images/banner_default.jpg -------------------------------------------------------------------------------- /assets/images/beauty1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/images/beauty1.jpg -------------------------------------------------------------------------------- /assets/images/beauty2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/images/beauty2.jpg -------------------------------------------------------------------------------- /assets/images/dots.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/images/dots.gif -------------------------------------------------------------------------------- /assets/images/header_boy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/images/header_boy.jpg -------------------------------------------------------------------------------- /assets/images/header_girl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/images/header_girl.jpg -------------------------------------------------------------------------------- /assets/images/logo_outline.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /assets/images/quote.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Artboard 5 | Created with Sketch. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /assets/images/stick_figure.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/images/stick_figure.jpg -------------------------------------------------------------------------------- /assets/js/app.js: -------------------------------------------------------------------------------- 1 | window.onload = function(){ 2 | // 导航选中标记 on 3 | document.querySelector('.header .' + location.pathname.split('/')[1]).classList.add('on') 4 | // 菜单 下拉 5 | document.querySelector('.js-menu').addEventListener('click', function () { 6 | document.querySelector('.drop-menu').classList.toggle('drop-menu-close') 7 | }) 8 | } -------------------------------------------------------------------------------- /assets/js/index.js: -------------------------------------------------------------------------------- 1 | (function (id) { 2 | var c = document.getElementById(id), 3 | width = window.innerWidth, 4 | height = window.innerHeight, 5 | ctx = c.getContext("2d"); 6 | 7 | var lastX = 0, lastY = 0, nextX = 0, nextY = 0; 8 | var lastImageData = null; 9 | lastImageData = lastMove(ctx, width, height) 10 | 11 | // 标记第一次进入 12 | var flag = true 13 | document.body.onmousemove = blackboard 14 | 15 | // 点击的时候 切换画还时候不画 16 | c.onclick = function () { 17 | if (document.body.onmousemove) { 18 | document.body.onmousemove = null 19 | flag = true; 20 | } else { 21 | document.body.onmousemove = blackboard 22 | } 23 | } 24 | 25 | document.body.onmouseleave = function () { 26 | lastX = 0, lastY = 0, nextX = 0, nextY = 0; 27 | flag = true 28 | } 29 | 30 | var img = new Image(); 31 | img.src = './assets/images/beauty' + (Math.floor(Math.random() * 2)+1)+'.jpg'; 32 | img.onload = function () { 33 | document.body.onmousemove = blackboard 34 | } 35 | 36 | function blackboard(e) { 37 | 38 | ctx.beginPath() 39 | if (flag) { 40 | if (e.target.nodeName == 'CANVAS') { 41 | lastX = e.offsetX 42 | lastY = e.offsetY 43 | } else { 44 | var offset = getBodyOffset(e.target) 45 | lastX = offset.left + e.offsetX + (window.screen.availWidth - window.innerWidth) / 2 46 | lastY = offset.top + e.offsetY 47 | } 48 | flag = false 49 | } 50 | drawLast(ctx, lastImageData) 51 | ctx.lineWidth = lineWidth; 52 | ctx.lineJoin = "round" 53 | ctx.lineCap = "round" 54 | 55 | var pattern = ctx.createPattern(img, 'no-repeat'); 56 | 57 | ctx.strokeStyle = pattern; 58 | ctx.moveTo(lastX, lastY); 59 | if (e.target.nodeName == 'CANVAS') { 60 | nextX = e.offsetX 61 | nextY = e.offsetY 62 | } else { 63 | var offset = getBodyOffset(e.target) 64 | 65 | nextX = offset.left + e.offsetX + (window.screen.availWidth-window.innerWidth)/2 66 | nextY = offset.top + e.offsetY 67 | } 68 | 69 | ctx.lineTo(nextX, nextY); 70 | lastX = nextX 71 | lastY = nextY 72 | ctx.stroke(); 73 | lastImageData = lastMove(ctx, width, height) 74 | } 75 | function lastMove(ctx, width, height) { 76 | return ctx.getImageData(0, 0, width, height); 77 | } 78 | function drawLast(ctx, imgData) { 79 | ctx.putImageData(imgData, 0, 0); 80 | } 81 | function getBodyOffset(element){ 82 | 83 | var left = element.offsetLeft||0,top=element.offsetTop||0; 84 | while (element.parentElement !=null){ 85 | 86 | left += element.parentElement.offsetLeft||0 87 | top += element.parentElement.offsetTop||0 88 | element = element.parentElement 89 | } 90 | return { 91 | left:left, 92 | top:top 93 | } 94 | } 95 | 96 | var lineWidth = 10; 97 | var btn_voice = document.getElementById('btn_voice') 98 | $('.tool ul li').on('click',function(){ 99 | $(this).addClass('on').siblings().removeClass('on') 100 | lineWidth = ($(this).index()+1)*10; 101 | }).on('mouseenter',function(){ 102 | btn_voice.currentTime = 0; 103 | btn_voice.play(); 104 | }) 105 | $('.enter').on('click',function(){ 106 | 107 | }) 108 | })("lineCanvas") 109 | -------------------------------------------------------------------------------- /assets/myPlugin/dash-player/1280.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/myPlugin/dash-player/1280.jpg -------------------------------------------------------------------------------- /assets/myPlugin/dash-player/dash-player.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/myPlugin/dash-player/dash-player.zip -------------------------------------------------------------------------------- /assets/myPlugin/donut-chart/donut-chart.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/myPlugin/donut-chart/donut-chart.zip -------------------------------------------------------------------------------- /assets/myPlugin/turntable/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/myPlugin/turntable/images/1.png -------------------------------------------------------------------------------- /assets/myPlugin/turntable/images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/myPlugin/turntable/images/2.png -------------------------------------------------------------------------------- /assets/myPlugin/turntable/images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/myPlugin/turntable/images/3.png -------------------------------------------------------------------------------- /assets/myPlugin/turntable/images/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/myPlugin/turntable/images/4.png -------------------------------------------------------------------------------- /assets/myPlugin/turntable/images/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/myPlugin/turntable/images/5.png -------------------------------------------------------------------------------- /assets/myPlugin/turntable/images/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/myPlugin/turntable/images/6.png -------------------------------------------------------------------------------- /assets/myPlugin/turntable/images/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/myPlugin/turntable/images/7.png -------------------------------------------------------------------------------- /assets/myPlugin/turntable/images/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/myPlugin/turntable/images/start.png -------------------------------------------------------------------------------- /assets/myPlugin/turntable/turntable-master.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/myPlugin/turntable/turntable-master.zip -------------------------------------------------------------------------------- /assets/myPlugin/turntable/turntable.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 抽奖 11 | 32 | 39 | 40 | 41 | 42 |
43 | 44 | 当前浏览器版本过低,请使用其他浏览器尝试 45 | 46 |

47 | 48 |
49 | 50 | 181 | 182 | 183 | -------------------------------------------------------------------------------- /assets/myPlugin/turntable/turntable.js: -------------------------------------------------------------------------------- 1 | (function ($) { 2 | /** 3 | * @param {Object} options 4 | * @param {Array} options.list 存储奖品的的列表,example [{1:{name:'谢谢参与',image:'1.jpg'}}] 5 | * @param {Object} options.outerCircle {color:'#df1e15'} 外圈颜色,默认红色 6 | * @param {Object} options.innerCircle {color:'#f4ad26'} 里圈颜色,默认黄色 7 | * @param {Array} options.dots ['#fbf0a9', '#fbb936'] 装饰点颜色 ,默认深黄浅黄交替 8 | * @param {Array} options.disk ['#ffb933', '#ffe8b5', '#ffb933', '#ffd57c', '#ffb933', '#ffe8b5', '#ffd57c'] 中心奖盘的颜色,默认7彩 9 | * @param {Object} options.title {color:'#5c1e08',font:'19px Arial'} 奖品标题颜色 10 | */ 11 | $.fn.WheelSurf = function (options) { 12 | var _default = { 13 | outerCircle: { 14 | color: '#df1e15' 15 | }, 16 | innerCircle: { 17 | color: '#f4ad26' 18 | }, 19 | dots: ['#fbf0a9', '#fbb936'], 20 | disk: ['#ffb933', '#ffe8b5', '#ffb933', '#ffd57c', '#ffb933', '#ffe8b5', '#ffd57c'], 21 | title: { 22 | color: '#5c1e08', 23 | font: '19px Arial' 24 | } 25 | } 26 | 27 | $.extend(_default,options) 28 | // 画布中心移动到canvas中心 29 | var _this = this[0], 30 | width = _this.width, 31 | height = _this.height, 32 | ctx = _this.getContext("2d"), 33 | imgs = [], 34 | awardTitle = [], 35 | awardPic = [] 36 | for (var item in _default.list) { 37 | awardTitle.push(_default.list[item].name) 38 | imgs.push(_default.list[item].image) 39 | } 40 | var num = imgs.length 41 | // 圆心 42 | var x = width / 2 43 | var y = height / 2 44 | ctx.translate(x, y) 45 | 46 | return { 47 | init: function (angelTo) { 48 | angelTo = angelTo || 0; 49 | 50 | ctx.clearRect(-this.width, -this.height, this.width, this.height); 51 | 52 | // 平分角度 53 | var angel = (2 * Math.PI / 360) * (360 / num); 54 | var startAngel = 2 * Math.PI / 360 * (-90) 55 | var endAngel = 2 * Math.PI / 360 * (-90) + angel 56 | 57 | // 旋转画布 58 | ctx.save() 59 | ctx.rotate(angelTo * Math.PI / 180); 60 | // 画外圆 61 | ctx.beginPath(); 62 | ctx.lineWidth = 25; 63 | ctx.strokeStyle = _default.outerCircle.color; 64 | ctx.arc(0, 0, 243, 0, 2 * Math.PI) 65 | ctx.stroke(); 66 | // 画里圆 67 | ctx.beginPath(); 68 | ctx.lineWidth = 23; 69 | ctx.strokeStyle = _default.innerCircle.color; 70 | ctx.arc(0, 0, 218, 0, 2 * Math.PI) 71 | ctx.stroke(); 72 | 73 | // 装饰点 74 | var dotColor = _default.dots 75 | for (var i = 0; i < 12; i++) { 76 | // 装饰点 圆心 坐标计算 77 | ctx.beginPath(); 78 | var radius = 230; 79 | var xr = radius * Math.cos(startAngel) 80 | var yr = radius * Math.sin(startAngel) 81 | 82 | ctx.fillStyle = dotColor[i % dotColor.length] 83 | ctx.arc(xr, yr, 11, 0, 2 * Math.PI) 84 | ctx.fill() 85 | 86 | startAngel += (2 * Math.PI / 360) * (360 / 12); 87 | 88 | } 89 | // 画里转盘 90 | var colors = _default.disk 91 | for (var i = 0; i < num; i++) { 92 | ctx.beginPath(); 93 | ctx.lineWidth = 208; 94 | ctx.strokeStyle = colors[i % colors.length] 95 | ctx.arc(0, 0, 104, startAngel, endAngel) 96 | ctx.stroke(); 97 | startAngel = endAngel 98 | endAngel += angel 99 | } 100 | // 添加奖品 101 | function loadImg() { 102 | 103 | var dtd = $.Deferred() 104 | var countImg = 0 105 | if (awardPic.length) { 106 | return dtd.resolve(awardPic); 107 | } 108 | for (var i = 0; i < num; i++) { 109 | var img = new Image() 110 | awardPic.push(img) 111 | 112 | img.src = imgs[i] 113 | img.onload = function () { 114 | countImg++ 115 | if (countImg == num) { 116 | dtd.resolve(awardPic); 117 | } 118 | } 119 | } 120 | return dtd.promise() 121 | } 122 | 123 | $.when(loadImg()).done(function (awardPic) { 124 | 125 | startAngel = angel / 2 126 | for (var i = 0; i < num; i++) { 127 | ctx.save(); 128 | ctx.rotate(startAngel) 129 | ctx.drawImage(awardPic[i], -48, -48 - 130); 130 | ctx.font = _default.title.font; 131 | ctx.fillStyle = _default.title.color 132 | ctx.textAlign = "center"; 133 | ctx.fillText(awardTitle[i], 0, -170); 134 | startAngel += angel 135 | ctx.restore(); 136 | } 137 | }) 138 | ctx.restore(); 139 | }, 140 | /** 141 | * @param angel 旋转角度 142 | * @param callback 转完后的回调函数 143 | */ 144 | lottery: function (angel, callback) { 145 | angel = angel || 0 146 | angel = 360-angel 147 | angel += 720 148 | // 基值(减速) 149 | var baseStep = 30 150 | // 起始滚动速度 151 | var baseSpeed = 0.3 152 | // 步长 153 | var count = 1; 154 | var _this = this 155 | var timer = setInterval(function () { 156 | 157 | _this.init(count) 158 | if (count == angel) { 159 | clearInterval(timer) 160 | if (typeof callback == "function") { 161 | callback() 162 | } 163 | } 164 | count = count + baseStep * (((angel - count) / angel) > baseSpeed ? baseSpeed : ((angel - count) / angel)) 165 | if (angel - count < 0.5) { 166 | count = angel 167 | } 168 | 169 | }, 25) 170 | } 171 | } 172 | 173 | } 174 | }(jQuery)) -------------------------------------------------------------------------------- /assets/myPlugin/turntable/turntable.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/myPlugin/turntable/turntable.zip -------------------------------------------------------------------------------- /assets/personal-information/info.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 个人信息 9 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 |
45 |
46 |
47 | 48 |

技能

49 |
熟练使用 html/html5+css/css3 页面布局
50 |
熟练 JavaScript
51 |
熟练 jquery
52 |
熟练 canvas 及小游戏制作
53 |
圆角饼形图 npm i donut-chart
54 |
熟练 vue + vue-router + vuex + axios
55 |
扩展脚手架 npm i vue-cli-self
56 |
熟悉 nodeJS + expressJS + ejs
57 | 58 |

工具使用:

59 |
布局工具: PC端使用DIV+CSS ,移动端使用手淘的flexible+flex布局,
60 |
样式工具:sass 预编译样式
61 |
构建工具:无模块化分割的使用gulp打包代码,有模块化思想的如vue 使用webpack打包
62 | 63 |

UI库

64 |
element-UI mint-UI,bootstrap,jqueryUI
65 |
66 | 67 |
68 | 69 |
70 | 71 | 72 | 73 |
74 |
75 | 76 | 81 | 196 | 197 | 198 | -------------------------------------------------------------------------------- /assets/personal-information/info.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/personal-information/info.jpg -------------------------------------------------------------------------------- /assets/personal-information/jquery.fullPage.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * fullPage 2.9.7 3 | * https://github.com/alvarotrigo/fullPage.js 4 | * MIT licensed 5 | * 6 | * Copyright (C) 2013 alvarotrigo.com - A project by Alvaro Trigo 7 | */ 8 | html.fp-enabled, 9 | .fp-enabled body { 10 | margin: 0; 11 | padding: 0; 12 | overflow:hidden; 13 | 14 | /*Avoid flicker on slides transitions for mobile phones #336 */ 15 | -webkit-tap-highlight-color: rgba(0,0,0,0); 16 | } 17 | .fp-section { 18 | position: relative; 19 | -webkit-box-sizing: border-box; /* Safari<=5 Android<=3 */ 20 | -moz-box-sizing: border-box; /* <=28 */ 21 | box-sizing: border-box; 22 | } 23 | .fp-slide { 24 | float: left; 25 | } 26 | .fp-slide, .fp-slidesContainer { 27 | height: 100%; 28 | display: block; 29 | } 30 | .fp-slides { 31 | z-index:1; 32 | height: 100%; 33 | overflow: hidden; 34 | position: relative; 35 | -webkit-transition: all 0.3s ease-out; /* Safari<=6 Android<=4.3 */ 36 | transition: all 0.3s ease-out; 37 | } 38 | .fp-section.fp-table, .fp-slide.fp-table { 39 | display: table; 40 | table-layout:fixed; 41 | width: 100%; 42 | } 43 | .fp-tableCell { 44 | display: table-cell; 45 | vertical-align: middle; 46 | width: 100%; 47 | height: 100%; 48 | } 49 | .fp-slidesContainer { 50 | float: left; 51 | position: relative; 52 | } 53 | .fp-controlArrow { 54 | -webkit-user-select: none; /* webkit (safari, chrome) browsers */ 55 | -moz-user-select: none; /* mozilla browsers */ 56 | -khtml-user-select: none; /* webkit (konqueror) browsers */ 57 | -ms-user-select: none; /* IE10+ */ 58 | position: absolute; 59 | z-index: 4; 60 | top: 50%; 61 | cursor: pointer; 62 | width: 0; 63 | height: 0; 64 | border-style: solid; 65 | margin-top: -38px; 66 | -webkit-transform: translate3d(0,0,0); 67 | -ms-transform: translate3d(0,0,0); 68 | transform: translate3d(0,0,0); 69 | } 70 | .fp-controlArrow.fp-prev { 71 | left: 15px; 72 | width: 0; 73 | border-width: 38.5px 34px 38.5px 0; 74 | border-color: transparent #fff transparent transparent; 75 | } 76 | .fp-controlArrow.fp-next { 77 | right: 15px; 78 | border-width: 38.5px 0 38.5px 34px; 79 | border-color: transparent transparent transparent #fff; 80 | } 81 | .fp-scrollable { 82 | overflow: hidden; 83 | position: relative; 84 | } 85 | .fp-scroller{ 86 | overflow: hidden; 87 | } 88 | .iScrollIndicator{ 89 | border: 0 !important; 90 | } 91 | .fp-notransition { 92 | -webkit-transition: none !important; 93 | transition: none !important; 94 | } 95 | #fp-nav { 96 | position: fixed; 97 | z-index: 100; 98 | margin-top: -32px; 99 | top: 50%; 100 | opacity: 1; 101 | -webkit-transform: translate3d(0,0,0); 102 | } 103 | #fp-nav.right { 104 | right: 17px; 105 | } 106 | #fp-nav.left { 107 | left: 17px; 108 | } 109 | .fp-slidesNav{ 110 | position: absolute; 111 | z-index: 4; 112 | opacity: 1; 113 | -webkit-transform: translate3d(0,0,0); 114 | -ms-transform: translate3d(0,0,0); 115 | transform: translate3d(0,0,0); 116 | left: 0 !important; 117 | right: 0; 118 | margin: 0 auto !important; 119 | } 120 | .fp-slidesNav.bottom { 121 | bottom: 17px; 122 | } 123 | .fp-slidesNav.top { 124 | top: 17px; 125 | } 126 | #fp-nav ul, 127 | .fp-slidesNav ul { 128 | margin: 0; 129 | padding: 0; 130 | } 131 | #fp-nav ul li, 132 | .fp-slidesNav ul li { 133 | display: block; 134 | width: 14px; 135 | height: 13px; 136 | margin: 7px; 137 | position:relative; 138 | } 139 | .fp-slidesNav ul li { 140 | display: inline-block; 141 | } 142 | #fp-nav ul li a, 143 | .fp-slidesNav ul li a { 144 | display: block; 145 | position: relative; 146 | z-index: 1; 147 | width: 100%; 148 | height: 100%; 149 | cursor: pointer; 150 | text-decoration: none; 151 | } 152 | #fp-nav ul li a.active span, 153 | .fp-slidesNav ul li a.active span, 154 | #fp-nav ul li:hover a.active span, 155 | .fp-slidesNav ul li:hover a.active span{ 156 | height: 12px; 157 | width: 12px; 158 | margin: -6px 0 0 -6px; 159 | border-radius: 100%; 160 | } 161 | #fp-nav ul li a span, 162 | .fp-slidesNav ul li a span { 163 | border-radius: 50%; 164 | position: absolute; 165 | z-index: 1; 166 | height: 4px; 167 | width: 4px; 168 | border: 0; 169 | background: #333; 170 | left: 50%; 171 | top: 50%; 172 | margin: -2px 0 0 -2px; 173 | -webkit-transition: all 0.1s ease-in-out; 174 | -moz-transition: all 0.1s ease-in-out; 175 | -o-transition: all 0.1s ease-in-out; 176 | transition: all 0.1s ease-in-out; 177 | } 178 | #fp-nav ul li:hover a span, 179 | .fp-slidesNav ul li:hover a span{ 180 | width: 10px; 181 | height: 10px; 182 | margin: -5px 0px 0px -5px; 183 | } 184 | #fp-nav ul li .fp-tooltip { 185 | position: absolute; 186 | top: -2px; 187 | color: #fff; 188 | font-size: 14px; 189 | font-family: arial, helvetica, sans-serif; 190 | white-space: nowrap; 191 | max-width: 220px; 192 | overflow: hidden; 193 | display: block; 194 | opacity: 0; 195 | width: 0; 196 | cursor: pointer; 197 | } 198 | #fp-nav ul li:hover .fp-tooltip, 199 | #fp-nav.fp-show-active a.active + .fp-tooltip { 200 | -webkit-transition: opacity 0.2s ease-in; 201 | transition: opacity 0.2s ease-in; 202 | width: auto; 203 | opacity: 1; 204 | } 205 | #fp-nav ul li .fp-tooltip.right { 206 | right: 20px; 207 | } 208 | #fp-nav ul li .fp-tooltip.left { 209 | left: 20px; 210 | } 211 | .fp-auto-height.fp-section, 212 | .fp-auto-height .fp-slide, 213 | .fp-auto-height .fp-tableCell{ 214 | height: auto !important; 215 | } 216 | 217 | .fp-responsive .fp-auto-height-responsive.fp-section, 218 | .fp-responsive .fp-auto-height-responsive .fp-slide, 219 | .fp-responsive .fp-auto-height-responsive .fp-tableCell { 220 | height: auto !important; 221 | } -------------------------------------------------------------------------------- /assets/personal-information/qrcode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/personal-information/qrcode.jpg -------------------------------------------------------------------------------- /assets/personal-information/work-experience.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangchaojie456/personal-website/9d6e59b1bb296d4462b70d2dbf965e28c911d0b5/assets/personal-information/work-experience.html -------------------------------------------------------------------------------- /bin/www: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | /** 4 | * Module dependencies. 5 | */ 6 | 7 | var app = require('../index'); 8 | var debug = require('debug')('myapp:server'); 9 | var http = require('http'); 10 | 11 | /** 12 | * Get port from environment and store in Express. 13 | */ 14 | 15 | var port = normalizePort(process.env.PORT || '3001'); 16 | app.set('port', port); 17 | 18 | /** 19 | * Create HTTP server. 20 | */ 21 | 22 | var server = http.createServer(app); 23 | 24 | /** 25 | * Listen on provided port, on all network interfaces. 26 | */ 27 | 28 | server.listen(port, () => { 29 | console.log('listen to :' + port) 30 | }); 31 | server.on('error', onError); 32 | server.on('listening', onListening); 33 | 34 | /** 35 | * Normalize a port into a number, string, or false. 36 | */ 37 | 38 | function normalizePort(val) { 39 | var port = parseInt(val, 10); 40 | 41 | if (isNaN(port)) { 42 | // named pipe 43 | return val; 44 | } 45 | 46 | if (port >= 0) { 47 | // port number 48 | return port; 49 | } 50 | 51 | return false; 52 | } 53 | 54 | /** 55 | * Event listener for HTTP server "error" event. 56 | */ 57 | 58 | function onError(error) { 59 | if (error.syscall !== 'listen') { 60 | throw error; 61 | } 62 | 63 | var bind = typeof port === 'string' 64 | ? 'Pipe ' + port 65 | : 'Port ' + port; 66 | 67 | // handle specific listen errors with friendly messages 68 | switch (error.code) { 69 | case 'EACCES': 70 | console.error(bind + ' requires elevated privileges'); 71 | process.exit(1); 72 | break; 73 | case 'EADDRINUSE': 74 | console.error(bind + ' is already in use'); 75 | process.exit(1); 76 | break; 77 | default: 78 | throw error; 79 | } 80 | } 81 | 82 | /** 83 | * Event listener for HTTP server "listening" event. 84 | */ 85 | 86 | function onListening() { 87 | var addr = server.address(); 88 | var bind = typeof addr === 'string' 89 | ? 'pipe ' + addr 90 | : 'port ' + addr.port; 91 | debug('Listening on ' + bind); 92 | } 93 | -------------------------------------------------------------------------------- /config/accessToken.json: -------------------------------------------------------------------------------- 1 | {"access_token":"9_zian9scMHyjTiJKFpQZji1jBLTmx-eJSv5179Y4GJG9ahvpXFp-YIyLX-S61a_hiOuXOA4bQW_41s7nnClx93auQ5EuG5pYIDpyBgXNyVfc1JM0KRerRLOF-GdcYIFbABATDA","expires_time":1525365767953} -------------------------------------------------------------------------------- /config/wechat.conf.json: -------------------------------------------------------------------------------- 1 | { 2 | "token": "yangcan321", 3 | "appID": "wx4d22418f2d3ded92", 4 | "appScrect": "1080c790268322c0f19798bc1ebbc7fc", 5 | "apiDomain": "https://api.weixin.qq.com/", 6 | "apiURL": { 7 | "accessTokenApi": "%scgi-bin/token?grant_type=client_credential&appid=%s&secret=%s" 8 | } 9 | } -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | var express = require('express'); 2 | var path = require('path'); 3 | var favicon = require('serve-favicon'); 4 | var logger = require('morgan'); 5 | var fs = require('fs');//加了文件操作的模块 6 | var cookieParser = require('cookie-parser'); 7 | var bodyParser = require('body-parser'); 8 | 9 | var plugin = require('./routes/plugin'); 10 | var wechat = require('./routes/wechat'); 11 | var app = express(); 12 | 13 | // view engine setup 14 | // 修改app.js 将view engine修改为ejs。(并将模板的后缀修改为.html) 15 | app.set('views', path.join(__dirname, 'views')); 16 | app.engine('.html', require('ejs').__express); 17 | app.set('view engine', 'html'); 18 | 19 | // uncomment after placing your favicon in /public 20 | app.use(favicon(path.join(__dirname, 'assets', 'favicon.ico'))); 21 | 22 | //创建一个写文件流,并且保存在当前文件夹的access.log文件中 23 | var accessLogStream = fs.createWriteStream(path.join(__dirname, 'log/access.log'), { flag: 'a' }); 24 | //设置开启文件流,并且指明文件流的对象 25 | app.use(logger('combined', { stream: accessLogStream })); 26 | 27 | app.use(bodyParser.json()); 28 | app.use(bodyParser.urlencoded({ extended: false })); 29 | app.use(cookieParser()); 30 | 31 | app.use('/assets', express.static(path.join(__dirname, 'assets'))); 32 | app.use(express.static(path.join(__dirname, 'static'))); 33 | app.use(express.static(path.join(__dirname, 'assets/game/'))); 34 | app.use(express.static(path.join(__dirname, 'assets/game-mobile/'))); 35 | 36 | app.get('/', function (req, res, next) { 37 | res.render('index') 38 | }); 39 | app.get('/home', function (req, res, next) { 40 | res.render('home.html') 41 | }); 42 | app.get('/about', function (req, res, next) { 43 | res.render('about.html') 44 | }); 45 | app.use('/plugin', plugin); 46 | app.use('/wechat', wechat); 47 | app.use(function (req, res, next) { 48 | res.status(404).send('Sorry cant find that!'); 49 | }); 50 | 51 | 52 | app.use(function (err, req, res, next) { 53 | console.error(err.stack); 54 | res.status(500).send('页面未找到'); 55 | }); 56 | module.exports = app; 57 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "www", 3 | "version": "1.0.0", 4 | "description": "personal-website", 5 | "main": "index.js", 6 | "scripts": { 7 | "start": "nodemon ./bin/www" 8 | }, 9 | "author": "yangCJ", 10 | "license": "ISC", 11 | "dependencies": { 12 | "body-parser": "^1.18.2", 13 | "cookie-parser": "^1.4.3", 14 | "crypto": "^1.0.1", 15 | "ejs": "^2.5.7", 16 | "express": "^4.16.2", 17 | "express-session": "^1.15.6", 18 | "morgan": "^1.10.0", 19 | "node-mysql": "^0.4.2", 20 | "request": "^2.85.0", 21 | "serve-favicon": "^2.4.5", 22 | "xml2js": "^0.4.19" 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /routes/plugin.js: -------------------------------------------------------------------------------- 1 | var express = require('express'); 2 | var router = express.Router(); 3 | 4 | 5 | // 定义插件列表的路由 6 | router.get('/', function (req, res) { 7 | res.render('plugin') 8 | }); 9 | // 定义插件路由 10 | router.get('/:plugin_name', function (req, res) { 11 | res.render('plugin/'+req.params.plugin_name); 12 | }); 13 | 14 | module.exports = router; -------------------------------------------------------------------------------- /routes/wechat.js: -------------------------------------------------------------------------------- 1 | // 用于接收微信消息和事件的接口 2 | const express = require('express'); 3 | const router = express.Router(); 4 | const crypto = require('crypto'); //引入加密模块 5 | const config = require('../config/wechat.conf'); //引入配置文件 6 | const wechat = require('../wechat/wechat') 7 | 8 | var wechatApp = new wechat(config); //实例wechat 模块 9 | 10 | router.get('/', async function(req, res) { 11 | wechatApp.auth(req, res); 12 | }); 13 | router.get('/getAccessToken', async function (req, res) { 14 | 15 | res.send(await wechatApp.getAccessToken()) 16 | }); 17 | 18 | router.post('/', async function (req, res) { 19 | var str = await wechatApp.handleMsg(req, res) 20 | console.log(str) 21 | res.send(str); 22 | }); 23 | module.exports = router; -------------------------------------------------------------------------------- /static/MP_verify_udtBGk0JibN6prgJ.txt: -------------------------------------------------------------------------------- 1 | udtBGk0JibN6prgJ -------------------------------------------------------------------------------- /views/about.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 关于 9 | 107 | 108 | 109 | 110 | 111 | <%include ./layout/header.html %> 112 |
113 |
114 | 115 |
116 |

117 | 118 | 119 | yangchaojie456@126.com 120 | 121 |

122 |
123 |
124 |

125 | 126 | 127 | 15618930832 128 | 129 |

130 |
131 |
132 |

133 | 134 | 上海市浦东新区高博路211弄东旭雅苑 135 |

136 |
137 |
138 | 139 |
140 | 141 |
142 | <%include ./layout/footer.html %> 143 | <%include ./layout/umeng.html%> 144 | 145 | 171 | 172 | -------------------------------------------------------------------------------- /views/home.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 首页 8 | 9 | 10 | <%include ./layout/header.html %> 11 |
12 | <%include ../assets/game/SuperMarioBros.html %> 13 |
14 | <%include ./layout/umeng.html%> 15 | 16 | -------------------------------------------------------------------------------- /views/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | zero to one 9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | hello 17 |
18 |
19 | 20 | welcome 21 | 22 |
23 |
24 | 35 |
36 |
37 | 38 |
39 |
40 | 41 |
42 | 43 | 44 | 45 | 46 | <%include ./layout/umeng.html%> 47 | 48 | -------------------------------------------------------------------------------- /views/layout/footer.html: -------------------------------------------------------------------------------- 1 | 143 | 144 | 145 | 146 | 147 | 148 | 160 | -------------------------------------------------------------------------------- /views/layout/header.html: -------------------------------------------------------------------------------- 1 | 2 | 153 | 154 | 155 |
156 |
157 | 165 | 166 | 167 | 181 | 182 | 187 |
188 | 204 |
205 | 206 |
207 | <%include umeng.html%> 208 |
209 | 210 | 211 | -------------------------------------------------------------------------------- /views/layout/umeng.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /views/plugin.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | Document 9 | 106 | 107 | 108 | 109 | <%include ./layout/header.html %> 110 | 111 |
112 |
113 |
114 |
1
115 |
116 |
117 |
2
118 |
119 |
120 |
3
121 |
122 |
123 |
4
124 |
125 |
126 |
5
127 |
128 |
129 |
6
130 |
131 |
132 |
133 |
134 | 145 |
146 | 147 | 194 | <%include ./layout/umeng.html%> 195 | 196 | -------------------------------------------------------------------------------- /views/plugin/dash-player.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | <%include ../utils/highlightCode.html %> 9 | 高仿优酷播放器 10 | <%include ../utils/plugin-app-css.html %> 11 | 12 | 13 | 14 | <%include ../layout/header.html %> 15 | 16 | 17 |
18 | <%include ../../assets/myPlugin/dash-player/index.html %> 19 |
20 | 21 | <%include ../layout/footer.html %> 22 | <%include ../layout/umeng.html%> 23 | 24 | <%include ../utils/plugin-app-js.html %> 25 | 26 | -------------------------------------------------------------------------------- /views/utils/highlightCode.html: -------------------------------------------------------------------------------- 1 | 12 | 13 | 14 | 15 | 16 | 17 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /views/utils/plugin-app-css.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /views/utils/plugin-app-js.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wechat/config/accessToken.json: -------------------------------------------------------------------------------- 1 | { 2 | "access_token": "", 3 | "expires_time": 0 4 | } -------------------------------------------------------------------------------- /wechat/msg.js: -------------------------------------------------------------------------------- 1 | //回复文本消息 2 | exports.txtMsg = function (toUser, fromUser, content) { 3 | var xmlContent = ""; 4 | xmlContent += ""; 5 | xmlContent += "" + new Date().getTime() + ""; 6 | xmlContent += ""; 7 | xmlContent += ""; 8 | return xmlContent; 9 | } 10 | //回复图文消息 11 | exports.graphicMsg = function (toUser, fromUser, contentArr) { 12 | var xmlContent = ""; 13 | xmlContent += ""; 14 | xmlContent += "" + new Date().getTime() + ""; 15 | xmlContent += ""; 16 | xmlContent += "" + contentArr.length + ""; 17 | xmlContent += ""; 18 | contentArr.map(function (item, index) { 19 | xmlContent += ""; 20 | xmlContent += "<![CDATA[" + item.Title + "]]>"; 21 | xmlContent += ""; 22 | xmlContent += ""; 23 | xmlContent += ""; 24 | xmlContent += ""; 25 | }); 26 | xmlContent += ""; 27 | return xmlContent; 28 | } --------------------------------------------------------------------------------