├── .gitignore ├── .travis.yml ├── demos ├── imgarr │ ├── imgs │ │ ├── 1.jpg │ │ ├── 10.jpg │ │ ├── 11.jpg │ │ ├── 12.jpg │ │ ├── 13.jpg │ │ ├── 14.jpg │ │ ├── 15.jpg │ │ ├── 16.jpg │ │ ├── 17.jpg │ │ ├── 18.jpg │ │ ├── 19.jpg │ │ ├── 2.jpg │ │ ├── 20.jpg │ │ ├── 21.jpg │ │ ├── 22.jpg │ │ ├── 23.jpg │ │ ├── 24.jpg │ │ ├── 25.jpg │ │ ├── 26.jpg │ │ ├── 27.jpg │ │ ├── 28.jpg │ │ ├── 29.jpg │ │ ├── 3.jpg │ │ ├── 30.jpg │ │ ├── 31.jpg │ │ ├── 32.jpg │ │ ├── 4.jpg │ │ ├── 5.jpg │ │ ├── 6.jpg │ │ ├── 7.jpg │ │ ├── 8.jpg │ │ └── 9.jpg │ ├── imgs2 │ │ ├── 1.jpg │ │ ├── 10.jpg │ │ ├── 11.jpg │ │ ├── 12.jpg │ │ ├── 13.jpg │ │ ├── 14.jpg │ │ ├── 15.jpg │ │ ├── 16.jpg │ │ ├── 17.jpg │ │ ├── 18.jpg │ │ ├── 19.jpg │ │ ├── 2.jpg │ │ ├── 20.jpg │ │ ├── 21.jpg │ │ ├── 22.jpg │ │ ├── 23.jpg │ │ ├── 24.jpg │ │ ├── 25.jpg │ │ ├── 26.jpg │ │ ├── 27.jpg │ │ ├── 28.jpg │ │ ├── 29.jpg │ │ ├── 3.jpg │ │ ├── 30.jpg │ │ ├── 31.jpg │ │ ├── 32.jpg │ │ ├── 33.jpg │ │ ├── 34.jpg │ │ ├── 35.jpg │ │ ├── 36.jpg │ │ ├── 37.jpg │ │ ├── 38.jpg │ │ ├── 39.jpg │ │ ├── 4.jpg │ │ ├── 40.jpg │ │ ├── 5.jpg │ │ ├── 6.jpg │ │ ├── 7.jpg │ │ ├── 8.jpg │ │ └── 9.jpg │ ├── index.html │ └── index2.html ├── libs │ └── vconsole.min.js ├── requireJs │ └── index.html └── sprite │ ├── c1l1frame.jpg │ ├── img │ ├── 1.png │ └── 2.png │ ├── imgs │ └── 1.jpg │ ├── index-ratio1.html │ ├── index-ratio2.html │ └── index-sprite.html ├── dist └── canvas-keyframes.min.js ├── gulpfile.js ├── package.json ├── readMe.md ├── readeMe_EN.md ├── script.sh ├── src └── canvas-keyframes.js ├── static └── wx.jpg └── test └── index.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | zl 4 | # Editor directories and files 5 | .idea 6 | .vscode 7 | *.suo 8 | *.ntvs* 9 | *.njsproj 10 | *.sln 11 | package-lock.json -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "4.2" 4 | sudo: false -------------------------------------------------------------------------------- /demos/imgarr/imgs/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs/1.jpg -------------------------------------------------------------------------------- /demos/imgarr/imgs/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs/10.jpg -------------------------------------------------------------------------------- /demos/imgarr/imgs/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs/11.jpg -------------------------------------------------------------------------------- /demos/imgarr/imgs/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs/12.jpg -------------------------------------------------------------------------------- /demos/imgarr/imgs/13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs/13.jpg -------------------------------------------------------------------------------- /demos/imgarr/imgs/14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs/14.jpg -------------------------------------------------------------------------------- /demos/imgarr/imgs/15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs/15.jpg -------------------------------------------------------------------------------- /demos/imgarr/imgs/16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs/16.jpg -------------------------------------------------------------------------------- /demos/imgarr/imgs/17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs/17.jpg -------------------------------------------------------------------------------- /demos/imgarr/imgs/18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs/18.jpg -------------------------------------------------------------------------------- /demos/imgarr/imgs/19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs/19.jpg -------------------------------------------------------------------------------- /demos/imgarr/imgs/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs/2.jpg -------------------------------------------------------------------------------- /demos/imgarr/imgs/20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs/20.jpg -------------------------------------------------------------------------------- /demos/imgarr/imgs/21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs/21.jpg -------------------------------------------------------------------------------- /demos/imgarr/imgs/22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs/22.jpg -------------------------------------------------------------------------------- /demos/imgarr/imgs/23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs/23.jpg -------------------------------------------------------------------------------- /demos/imgarr/imgs/24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs/24.jpg -------------------------------------------------------------------------------- /demos/imgarr/imgs/25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs/25.jpg -------------------------------------------------------------------------------- /demos/imgarr/imgs/26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs/26.jpg -------------------------------------------------------------------------------- /demos/imgarr/imgs/27.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs/27.jpg -------------------------------------------------------------------------------- /demos/imgarr/imgs/28.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs/28.jpg -------------------------------------------------------------------------------- /demos/imgarr/imgs/29.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs/29.jpg -------------------------------------------------------------------------------- /demos/imgarr/imgs/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs/3.jpg -------------------------------------------------------------------------------- /demos/imgarr/imgs/30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs/30.jpg -------------------------------------------------------------------------------- /demos/imgarr/imgs/31.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs/31.jpg -------------------------------------------------------------------------------- /demos/imgarr/imgs/32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs/32.jpg -------------------------------------------------------------------------------- /demos/imgarr/imgs/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs/4.jpg -------------------------------------------------------------------------------- /demos/imgarr/imgs/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs/5.jpg -------------------------------------------------------------------------------- /demos/imgarr/imgs/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs/6.jpg -------------------------------------------------------------------------------- /demos/imgarr/imgs/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs/7.jpg -------------------------------------------------------------------------------- /demos/imgarr/imgs/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs/8.jpg -------------------------------------------------------------------------------- /demos/imgarr/imgs/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs/9.jpg -------------------------------------------------------------------------------- /demos/imgarr/imgs2/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs2/1.jpg -------------------------------------------------------------------------------- /demos/imgarr/imgs2/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs2/10.jpg -------------------------------------------------------------------------------- /demos/imgarr/imgs2/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs2/11.jpg -------------------------------------------------------------------------------- /demos/imgarr/imgs2/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs2/12.jpg -------------------------------------------------------------------------------- /demos/imgarr/imgs2/13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs2/13.jpg -------------------------------------------------------------------------------- /demos/imgarr/imgs2/14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs2/14.jpg -------------------------------------------------------------------------------- /demos/imgarr/imgs2/15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs2/15.jpg -------------------------------------------------------------------------------- /demos/imgarr/imgs2/16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs2/16.jpg -------------------------------------------------------------------------------- /demos/imgarr/imgs2/17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs2/17.jpg -------------------------------------------------------------------------------- /demos/imgarr/imgs2/18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs2/18.jpg -------------------------------------------------------------------------------- /demos/imgarr/imgs2/19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs2/19.jpg -------------------------------------------------------------------------------- /demos/imgarr/imgs2/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs2/2.jpg -------------------------------------------------------------------------------- /demos/imgarr/imgs2/20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs2/20.jpg -------------------------------------------------------------------------------- /demos/imgarr/imgs2/21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs2/21.jpg -------------------------------------------------------------------------------- /demos/imgarr/imgs2/22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs2/22.jpg -------------------------------------------------------------------------------- /demos/imgarr/imgs2/23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs2/23.jpg -------------------------------------------------------------------------------- /demos/imgarr/imgs2/24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs2/24.jpg -------------------------------------------------------------------------------- /demos/imgarr/imgs2/25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs2/25.jpg -------------------------------------------------------------------------------- /demos/imgarr/imgs2/26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs2/26.jpg -------------------------------------------------------------------------------- /demos/imgarr/imgs2/27.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs2/27.jpg -------------------------------------------------------------------------------- /demos/imgarr/imgs2/28.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs2/28.jpg -------------------------------------------------------------------------------- /demos/imgarr/imgs2/29.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs2/29.jpg -------------------------------------------------------------------------------- /demos/imgarr/imgs2/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs2/3.jpg -------------------------------------------------------------------------------- /demos/imgarr/imgs2/30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs2/30.jpg -------------------------------------------------------------------------------- /demos/imgarr/imgs2/31.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs2/31.jpg -------------------------------------------------------------------------------- /demos/imgarr/imgs2/32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs2/32.jpg -------------------------------------------------------------------------------- /demos/imgarr/imgs2/33.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs2/33.jpg -------------------------------------------------------------------------------- /demos/imgarr/imgs2/34.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs2/34.jpg -------------------------------------------------------------------------------- /demos/imgarr/imgs2/35.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs2/35.jpg -------------------------------------------------------------------------------- /demos/imgarr/imgs2/36.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs2/36.jpg -------------------------------------------------------------------------------- /demos/imgarr/imgs2/37.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs2/37.jpg -------------------------------------------------------------------------------- /demos/imgarr/imgs2/38.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs2/38.jpg -------------------------------------------------------------------------------- /demos/imgarr/imgs2/39.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs2/39.jpg -------------------------------------------------------------------------------- /demos/imgarr/imgs2/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs2/4.jpg -------------------------------------------------------------------------------- /demos/imgarr/imgs2/40.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs2/40.jpg -------------------------------------------------------------------------------- /demos/imgarr/imgs2/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs2/5.jpg -------------------------------------------------------------------------------- /demos/imgarr/imgs2/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs2/6.jpg -------------------------------------------------------------------------------- /demos/imgarr/imgs2/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs2/7.jpg -------------------------------------------------------------------------------- /demos/imgarr/imgs2/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs2/8.jpg -------------------------------------------------------------------------------- /demos/imgarr/imgs2/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenyiweb/canvasKeyFrames/621808c041e4f0289e11178f307befc9ddfc1261/demos/imgarr/imgs2/9.jpg -------------------------------------------------------------------------------- /demos/imgarr/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 |{{content}}'},function(e,t,o){var n,r,i;r=[t,o(3),o(25)],void 0===(i="function"==typeof(n=function(o,n,r){"use strict";function i(e){return e&&e.__esModule?e:{default:e}}function a(e){return(a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function l(e,t){for(var o=0;o
{{response || \'\'}}\n