Trang H5 Trái Đất Quay Vòng với Vue và threejs
Đây là một phiên bản sao của Vue của the original H5 site
Cách chơi
. mở it với chế độ gỡ lỗi di động của Chrome
. chạm và xoay trái đất
. nhấn và giữ nút dưới cùng
. sau đó bạn sẽ thấy điều kỳ diệu
Công việc H5 của tôi
. Giới thiệu FIFA có thể cuộn 3D
. Cầu thủ bóng đá Face Guess Game
. Một trò chơi canvas nhỏ 2016 Recap
.babelrc
{
"presets": [
["env", { "modules": false }],
"stage-2"
],
"plugins": ["transform-runtime"],
"comments": false,
"env": {
"test": {
"presets": ["env", "stage-2"],
"plugins": [ "istanbul" ]
}
}
}
.editorconfig
root = true
[*]
charset = utf-8
indent_style = space
indent_size = 2
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
.eslintignore
build/*.js
config/*.js
.eslintrc.js
// http://eslint.org/docs/user-guide/configuring
module.exports = {
root: true,
parser: 'babel-eslint',
parserOptions: {
sourceType: 'module'
},
env: {
browser: true,
},
// https://github.com/feross/standard/blob/master/RULES.md#javascript-standard-style
extends: 'standard',
// required to lint *.vue files
plugins: [
'html'
],
// add your custom rules here
'rules': {
// allow paren-less arrow functions
'arrow-parens': 0,
// allow async-await
'generator-star-spacing': 0,
// allow debugger during development
'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0
}
}
.gitignore
.DS_Store
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
Thông tin tải về:
Tác giả: JackGit
Nguồn: https://github.com/JackGit/xplan/