├── README.md ├── indexedDB └── index.js ├── jszip ├── index.js └── jsZip_util.js ├── performance ├── frameAnimation.js ├── index.html └── resource │ ├── frames │ ├── 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 │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ └── 9.png │ ├── spritesheet.png │ └── tm │ ├── tm.json │ └── tm.png └── score ├── index.html ├── log.js ├── score.js └── score2.js /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caesor/AC-H5AnimationTips/HEAD/README.md -------------------------------------------------------------------------------- /indexedDB/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caesor/AC-H5AnimationTips/HEAD/indexedDB/index.js -------------------------------------------------------------------------------- /jszip/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caesor/AC-H5AnimationTips/HEAD/jszip/index.js -------------------------------------------------------------------------------- /jszip/jsZip_util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caesor/AC-H5AnimationTips/HEAD/jszip/jsZip_util.js -------------------------------------------------------------------------------- /performance/frameAnimation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caesor/AC-H5AnimationTips/HEAD/performance/frameAnimation.js -------------------------------------------------------------------------------- /performance/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caesor/AC-H5AnimationTips/HEAD/performance/index.html -------------------------------------------------------------------------------- /performance/resource/frames/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caesor/AC-H5AnimationTips/HEAD/performance/resource/frames/1.png -------------------------------------------------------------------------------- /performance/resource/frames/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caesor/AC-H5AnimationTips/HEAD/performance/resource/frames/10.png -------------------------------------------------------------------------------- /performance/resource/frames/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caesor/AC-H5AnimationTips/HEAD/performance/resource/frames/11.png -------------------------------------------------------------------------------- /performance/resource/frames/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caesor/AC-H5AnimationTips/HEAD/performance/resource/frames/12.png -------------------------------------------------------------------------------- /performance/resource/frames/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caesor/AC-H5AnimationTips/HEAD/performance/resource/frames/13.png -------------------------------------------------------------------------------- /performance/resource/frames/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caesor/AC-H5AnimationTips/HEAD/performance/resource/frames/14.png -------------------------------------------------------------------------------- /performance/resource/frames/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caesor/AC-H5AnimationTips/HEAD/performance/resource/frames/15.png -------------------------------------------------------------------------------- /performance/resource/frames/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caesor/AC-H5AnimationTips/HEAD/performance/resource/frames/16.png -------------------------------------------------------------------------------- /performance/resource/frames/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caesor/AC-H5AnimationTips/HEAD/performance/resource/frames/17.png -------------------------------------------------------------------------------- /performance/resource/frames/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caesor/AC-H5AnimationTips/HEAD/performance/resource/frames/18.png -------------------------------------------------------------------------------- /performance/resource/frames/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caesor/AC-H5AnimationTips/HEAD/performance/resource/frames/19.png -------------------------------------------------------------------------------- /performance/resource/frames/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caesor/AC-H5AnimationTips/HEAD/performance/resource/frames/2.png -------------------------------------------------------------------------------- /performance/resource/frames/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caesor/AC-H5AnimationTips/HEAD/performance/resource/frames/20.png -------------------------------------------------------------------------------- /performance/resource/frames/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caesor/AC-H5AnimationTips/HEAD/performance/resource/frames/21.png -------------------------------------------------------------------------------- /performance/resource/frames/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caesor/AC-H5AnimationTips/HEAD/performance/resource/frames/22.png -------------------------------------------------------------------------------- /performance/resource/frames/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caesor/AC-H5AnimationTips/HEAD/performance/resource/frames/3.png -------------------------------------------------------------------------------- /performance/resource/frames/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caesor/AC-H5AnimationTips/HEAD/performance/resource/frames/4.png -------------------------------------------------------------------------------- /performance/resource/frames/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caesor/AC-H5AnimationTips/HEAD/performance/resource/frames/5.png -------------------------------------------------------------------------------- /performance/resource/frames/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caesor/AC-H5AnimationTips/HEAD/performance/resource/frames/6.png -------------------------------------------------------------------------------- /performance/resource/frames/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caesor/AC-H5AnimationTips/HEAD/performance/resource/frames/7.png -------------------------------------------------------------------------------- /performance/resource/frames/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caesor/AC-H5AnimationTips/HEAD/performance/resource/frames/8.png -------------------------------------------------------------------------------- /performance/resource/frames/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caesor/AC-H5AnimationTips/HEAD/performance/resource/frames/9.png -------------------------------------------------------------------------------- /performance/resource/spritesheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caesor/AC-H5AnimationTips/HEAD/performance/resource/spritesheet.png -------------------------------------------------------------------------------- /performance/resource/tm/tm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caesor/AC-H5AnimationTips/HEAD/performance/resource/tm/tm.json -------------------------------------------------------------------------------- /performance/resource/tm/tm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caesor/AC-H5AnimationTips/HEAD/performance/resource/tm/tm.png -------------------------------------------------------------------------------- /score/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caesor/AC-H5AnimationTips/HEAD/score/index.html -------------------------------------------------------------------------------- /score/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caesor/AC-H5AnimationTips/HEAD/score/log.js -------------------------------------------------------------------------------- /score/score.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caesor/AC-H5AnimationTips/HEAD/score/score.js -------------------------------------------------------------------------------- /score/score2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caesor/AC-H5AnimationTips/HEAD/score/score2.js --------------------------------------------------------------------------------