https://japan-map-puzzle-v2-zhuyue.netlify.app/
Drag 47 puzzle pieces to match the original map!
Developed in ES6, SASS, and HTML
Bundled and polyfilled with Parcel@1
npm install
npm run dev
npm run build
Access version1 here: https://japanmappuzzle-zhuyue.netlify.app/
- Use parcel@1 to bundle and polyfill modern javascript
- Use mvc architecture to organize javascript
- Use npm scripts to run or build site
- Use sass(scss) to organize css
- Add "expert" game mode
- Avoid puzzle pieces from overlapping each other
- Make responsive button elements
prettier stylelint
.vscode/setting.json
{
"files.autoSave": "onFocusChange",
"editor.tabSize": 2,
"editor.detectIndentation": false,
"editor.defaultFormatter": null,
"editor.codeActionsOnSave": {
"source.fixAll.stylelint": true,
},
"prettier.resolveGlobalModules": false,
"prettier.configPath": ".prettierrc",
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnType": false,
"editor.formatOnSave": true,
"editor.tabSize": 2
},
}