├── .babelrc ├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── .jshintrc ├── .postcssrc.js ├── README.md ├── _config.yml ├── build ├── app.js ├── build.js ├── check-versions.js ├── dep.js ├── dev-client.js ├── dev-server.js ├── utils.js ├── vue-loader.conf.js ├── webpack.app.conf.js ├── webpack.base.conf.js ├── webpack.dep.conf.js ├── webpack.dev.conf.js └── webpack.prod.conf.js ├── config ├── dev.env.js ├── index.js └── prod.env.js ├── cordova.js ├── dep ├── index.html └── static │ ├── css │ └── app.css │ ├── font-awesome │ ├── HELP-US-OUT.txt │ ├── css │ │ ├── font-awesome.css │ │ └── font-awesome.min.css │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 │ ├── less │ │ ├── animated.less │ │ ├── bordered-pulled.less │ │ ├── core.less │ │ ├── fixed-width.less │ │ ├── font-awesome.less │ │ ├── icons.less │ │ ├── larger.less │ │ ├── list.less │ │ ├── mixins.less │ │ ├── path.less │ │ ├── rotated-flipped.less │ │ ├── screen-reader.less │ │ ├── stacked.less │ │ └── variables.less │ └── scss │ │ ├── _animated.scss │ │ ├── _bordered-pulled.scss │ │ ├── _core.scss │ │ ├── _fixed-width.scss │ │ ├── _icons.scss │ │ ├── _larger.scss │ │ ├── _list.scss │ │ ├── _mixins.scss │ │ ├── _path.scss │ │ ├── _rotated-flipped.scss │ │ ├── _screen-reader.scss │ │ ├── _stacked.scss │ │ ├── _variables.scss │ │ └── font-awesome.scss │ ├── html │ └── map.html │ ├── images │ ├── baiping.gif │ ├── footer │ │ ├── home.png │ │ ├── home_active.png │ │ ├── jour.png │ │ ├── jour_active.png │ │ ├── pro.png │ │ ├── pro_active.png │ │ ├── proposal.png │ │ └── proposal_active.png │ ├── icon │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ ├── eye.png │ │ └── eye_active.png │ ├── plants │ │ ├── 1.png │ │ ├── UI切图 │ │ │ ├── 场景 │ │ │ │ ├── 游戏背景-1.jpg │ │ │ │ └── 游戏背景-2.jpg │ │ │ ├── 时间 分数板 │ │ │ │ └── images │ │ │ │ │ ├── 分数.png │ │ │ │ │ └── 时间.jpg │ │ │ ├── 种子-1 │ │ │ │ └── images │ │ │ │ │ ├── 种子1_03.jpg │ │ │ │ │ ├── 种子1_07.png │ │ │ │ │ ├── 种子1_10.jpg │ │ │ │ │ └── 种子1_13.jpg │ │ │ ├── 种子-2 │ │ │ │ └── images │ │ │ │ │ ├── 种子2_03.jpg │ │ │ │ │ ├── 种子2_06.png │ │ │ │ │ ├── 种子2_09.jpg │ │ │ │ │ └── 种子2_12.jpg │ │ │ ├── 种子-3 │ │ │ │ └── images │ │ │ │ │ ├── 种子-3_03.jpg │ │ │ │ │ ├── 种子-3_07.png │ │ │ │ │ ├── 种子-3_10.jpg │ │ │ │ │ └── 种子-3_13.jpg │ │ │ ├── 蓄力 │ │ │ │ └── images │ │ │ │ │ ├── 蓄力槽_02.jpg │ │ │ │ │ ├── 蓄力槽_05.jpg │ │ │ │ │ ├── 蓄力槽_07.jpg │ │ │ │ │ ├── 蓄力槽_08.jpg │ │ │ │ │ ├── 蓄力槽_11.jpg │ │ │ │ │ └── 蓄力槽_13.png │ │ │ └── 蓄力指引 │ │ │ │ └── images │ │ │ │ ├── 指引_06.jpg │ │ │ │ ├── 指引_10.png │ │ │ │ └── 指引_15.jpg │ │ ├── bg.jpg │ │ ├── dust.png │ │ ├── idle │ │ │ ├── idle_00.png │ │ │ ├── idle_01.png │ │ │ ├── idle_02.png │ │ │ ├── idle_03.png │ │ │ ├── idle_04.png │ │ │ ├── idle_05.png │ │ │ ├── idle_06.png │ │ │ ├── idle_07.png │ │ │ ├── idle_08.png │ │ │ ├── idle_09.png │ │ │ ├── idle_10.png │ │ │ ├── idle_11.png │ │ │ ├── idle_12.png │ │ │ ├── idle_13.png │ │ │ ├── idle_14.png │ │ │ ├── idle_15.png │ │ │ ├── idle_16.png │ │ │ └── idle_17.png │ │ ├── loadding │ │ │ ├── loadding_06.png │ │ │ ├── loadding_1.png │ │ │ ├── loadding_17.png │ │ │ ├── loadding_2.png │ │ │ └── loadding_3.png │ │ ├── loadding_bg.jpg │ │ ├── plant_01 │ │ │ ├── plant_01.jpg │ │ │ ├── plant_01.png │ │ │ ├── plant_02.jpg │ │ │ ├── plant_02.png │ │ │ ├── plant_03.jpg │ │ │ ├── plant_03.png │ │ │ └── plant_04.png │ │ ├── score.png │ │ ├── sun.png │ │ ├── time.jpg │ │ ├── time.png │ │ ├── timeOver │ │ │ ├── time_1.png │ │ │ ├── time_2.png │ │ │ └── time_3.png │ │ └── zombies │ │ │ ├── attack │ │ │ ├── attack_00.png │ │ │ ├── attack_01.png │ │ │ ├── attack_02.png │ │ │ ├── attack_03.png │ │ │ ├── attack_04.png │ │ │ ├── attack_05.png │ │ │ ├── attack_06.png │ │ │ ├── attack_07.png │ │ │ ├── attack_08.png │ │ │ ├── attack_09.png │ │ │ ├── attack_10.png │ │ │ ├── attack_11.png │ │ │ ├── attack_12.png │ │ │ ├── attack_13.png │ │ │ ├── attack_14.png │ │ │ ├── attack_15.png │ │ │ ├── attack_16.png │ │ │ ├── attack_17.png │ │ │ ├── attack_18.png │ │ │ ├── attack_19.png │ │ │ └── attack_20.png │ │ │ ├── die │ │ │ ├── die_00.png │ │ │ ├── die_01.png │ │ │ ├── die_02.png │ │ │ ├── die_03.png │ │ │ ├── die_04.png │ │ │ ├── die_05.png │ │ │ ├── die_06.png │ │ │ ├── die_07.png │ │ │ ├── die_08.png │ │ │ └── die_09.png │ │ │ ├── dieboom │ │ │ ├── dieboom_00.png │ │ │ ├── dieboom_01.png │ │ │ ├── dieboom_02.png │ │ │ ├── dieboom_03.png │ │ │ ├── dieboom_04.png │ │ │ ├── dieboom_05.png │ │ │ ├── dieboom_06.png │ │ │ ├── dieboom_07.png │ │ │ ├── dieboom_08.png │ │ │ ├── dieboom_09.png │ │ │ ├── dieboom_10.png │ │ │ ├── dieboom_11.png │ │ │ ├── dieboom_12.png │ │ │ ├── dieboom_13.png │ │ │ ├── dieboom_14.png │ │ │ ├── dieboom_15.png │ │ │ ├── dieboom_16.png │ │ │ ├── dieboom_17.png │ │ │ ├── dieboom_18.png │ │ │ └── dieboom_19.png │ │ │ ├── dying │ │ │ ├── body │ │ │ │ ├── body_00.png │ │ │ │ ├── body_01.png │ │ │ │ ├── body_02.png │ │ │ │ ├── body_03.png │ │ │ │ ├── body_04.png │ │ │ │ ├── body_05.png │ │ │ │ ├── body_06.png │ │ │ │ ├── body_07.png │ │ │ │ ├── body_08.png │ │ │ │ ├── body_09.png │ │ │ │ ├── body_10.png │ │ │ │ ├── body_11.png │ │ │ │ ├── body_12.png │ │ │ │ ├── body_13.png │ │ │ │ ├── body_14.png │ │ │ │ ├── body_15.png │ │ │ │ ├── body_16.png │ │ │ │ └── body_17.png │ │ │ └── head │ │ │ │ ├── head_00.png │ │ │ │ ├── head_01.png │ │ │ │ ├── head_02.png │ │ │ │ ├── head_03.png │ │ │ │ ├── head_04.png │ │ │ │ ├── head_05.png │ │ │ │ ├── head_06.png │ │ │ │ ├── head_07.png │ │ │ │ ├── head_08.png │ │ │ │ ├── head_09.png │ │ │ │ ├── head_10.png │ │ │ │ └── head_11.png │ │ │ ├── idle │ │ │ ├── idle_00.png │ │ │ ├── idle_01.png │ │ │ ├── idle_02.png │ │ │ ├── idle_03.png │ │ │ ├── idle_04.png │ │ │ ├── idle_05.png │ │ │ ├── idle_06.png │ │ │ ├── idle_07.png │ │ │ ├── idle_08.png │ │ │ ├── idle_09.png │ │ │ ├── idle_10.png │ │ │ ├── idle_11.png │ │ │ ├── idle_12.png │ │ │ ├── idle_13.png │ │ │ ├── idle_14.png │ │ │ ├── idle_15.png │ │ │ ├── idle_16.png │ │ │ ├── idle_17.png │ │ │ ├── idle_18.png │ │ │ ├── idle_19.png │ │ │ ├── idle_20.png │ │ │ ├── idle_21.png │ │ │ ├── idle_22.png │ │ │ ├── idle_23.png │ │ │ ├── idle_24.png │ │ │ ├── idle_25.png │ │ │ ├── idle_26.png │ │ │ ├── idle_27.png │ │ │ ├── idle_28.png │ │ │ ├── idle_29.png │ │ │ └── idle_30.png │ │ │ └── run │ │ │ ├── run_00.png │ │ │ ├── run_01.png │ │ │ ├── run_02.png │ │ │ ├── run_03.png │ │ │ ├── run_04.png │ │ │ ├── run_05.png │ │ │ ├── run_06.png │ │ │ ├── run_07.png │ │ │ ├── run_08.png │ │ │ ├── run_09.png │ │ │ ├── run_10.png │ │ │ ├── run_11.png │ │ │ ├── run_12.png │ │ │ ├── run_13.png │ │ │ ├── run_14.png │ │ │ ├── run_15.png │ │ │ ├── run_16.png │ │ │ ├── run_17.png │ │ │ ├── run_18.png │ │ │ ├── run_19.png │ │ │ ├── run_20.png │ │ │ ├── run_21.png │ │ │ ├── run_22.png │ │ │ ├── run_23.png │ │ │ ├── run_24.png │ │ │ ├── run_25.png │ │ │ ├── run_26.png │ │ │ ├── run_27.png │ │ │ ├── run_28.png │ │ │ ├── run_29.png │ │ │ └── run_30.png │ ├── process │ │ └── m_process.jpg │ └── screen │ │ ├── 1.png │ │ ├── 11.png │ │ ├── 2.png │ │ ├── 22.png │ │ ├── 3.png │ │ ├── bg.png │ │ ├── third.jpeg │ │ ├── two.jpeg │ │ ├── two.png │ │ └── two.psd │ ├── img │ ├── bg.1b0f286.jpg │ ├── bg.ce1f7be.png │ ├── loadding_1.7e6e8ea.png │ ├── loadding_bg.eae4889.jpg │ ├── plant_01.1e81700.png │ ├── plant_02.1b965aa.png │ ├── plant_03.cbd2545.png │ ├── plant_04.f7b2294.png │ ├── play.34c4fbe.png │ └── sun.21f9896.png │ ├── js │ ├── app.05d8019d33bf30c51b8d.js │ ├── demo.0d3105a776b21897dd02.js │ ├── demoMain.e94fa34e5c13c295b51f.js │ ├── manifest.ca0229bcede912b0ff36.js │ ├── n22Address.7af15adcdd14845bdf72.js │ ├── n22Animate.0704796a81901736d79d.js │ ├── n22Calendar.1332a0f9fa2bd5d6bc22.js │ ├── n22Canvas.33124d3aac0dec1050f6.js │ ├── n22CellSwipe.b231b033ad5640854d5d.js │ ├── n22DatePicker.19bd8733c0e4c6e9fb53.js │ ├── n22Field.d84961716330c8fe3b0d.js │ ├── n22Highlight.a37a147c39bb0df14a65.js │ ├── n22Icon.ebb50c4035b15aedbd73.js │ ├── n22Input.fd605d597f8a797a0752.js │ ├── n22JPush.953b305f4d690c864292.js │ ├── n22List.23e2cc60e0d086555a49.js │ ├── n22Map.cdc341710b7f0a512310.js │ ├── n22Native.6e782e1d867385af4d9d.js │ ├── n22Picker.a0c3c3504b0789a1bbf2.js │ ├── n22Render.fbefa336fb08a559624e.js │ ├── n22Scroll.9d92eefca31d65827040.js │ ├── n22ScrollTemp.5c63e580bac90178305c.js │ ├── n22Search.5b5a85be45cf546666d7.js │ ├── n22Sign.995ac9d0b37ebbff1b7d.js │ ├── n22SplashScreen.0d0c61ed72c10ce1f512.js │ ├── n22Sun.eff92be1e7c93551fd9a.js │ ├── n22Switch.2d780dd9f64aeb26c012.js │ ├── n22Tab.8fbac15427d5bf4164b9.js │ ├── n22Template.05f2d9dfe8ce82d244ac.js │ ├── n22Touch.9268a8e6e847db09c09c.js │ ├── n22Utils.b330635008bb2b3da5e5.js │ ├── n22Version.4c7af581d87100d18852.js │ ├── n22Video.09e44f217825f445dd05.js │ ├── n22WeChat.c29f47851c2fedd27ad1.js │ ├── n22Zombi.253e24f3c39baee3f628.js │ ├── n22Zoom.5cfb7f006cb482e7f35d.js │ └── vendor.99d1ffe0c1a43b75f7d7.js │ └── lib │ ├── README.md │ ├── finger │ ├── alloy_finger.js │ └── alloy_finger.vue.js │ ├── jquery │ └── jquery.min.js │ ├── mescroll │ ├── README.md │ ├── mescroll-tip.txt │ ├── mescroll.m.js │ ├── mescroll.min.css │ ├── mescroll.min.js │ └── package.json │ ├── mobiscroll │ ├── css │ │ ├── icons_mobiscroll.eot │ │ ├── icons_mobiscroll.svg │ │ ├── icons_mobiscroll.ttf │ │ ├── icons_mobiscroll.woff │ │ └── mobiscroll.javascript.min.css │ └── js │ │ └── mobiscroll.javascript.min.js │ ├── patternLock │ ├── patternLock.css │ ├── patternLock.js │ └── patternLock.min.js │ ├── scroll │ ├── img │ │ └── mescroll-totop.png │ ├── src │ │ ├── utils │ │ │ └── helpers.js │ │ └── vue-scroll-behavior.js │ └── vue-scroll-behavior.js │ ├── security │ ├── DES3.js │ ├── base64.js │ └── md5-min.js │ └── swiper │ └── swiper.animate1.0.2.min.js ├── index.html ├── keyboard.js ├── keyboard.min.js ├── package-lock.json ├── package.json ├── questions.md ├── src ├── README.md ├── assets │ ├── bo │ │ └── bo.js │ ├── css │ │ ├── demo.scss │ │ ├── main.scss │ │ └── vars.scss │ ├── data │ │ ├── CodeData.js │ │ ├── addressData.json │ │ ├── countryData.js │ │ ├── districts.js │ │ └── nationData.js │ └── interface │ │ └── interface.js ├── common │ ├── App.vue │ ├── README.md │ ├── components │ │ ├── n22-address │ │ │ ├── assets │ │ │ │ ├── data │ │ │ │ │ └── districts.js │ │ │ │ ├── images │ │ │ │ │ └── close.png │ │ │ │ └── lib │ │ │ │ │ └── addressUtils.js │ │ │ ├── index.js │ │ │ └── n22-address.vue │ │ ├── n22-calendar │ │ │ ├── assets │ │ │ │ └── lib │ │ │ │ │ └── calendar.js │ │ │ ├── index.js │ │ │ ├── left.png │ │ │ ├── n22-calendar-item.vue │ │ │ ├── n22-calendar.vue │ │ │ └── right.png │ │ ├── n22-cell-swipe │ │ │ ├── index.js │ │ │ └── n22-cell-swipe.vue │ │ ├── n22-date-picker │ │ │ ├── assets │ │ │ │ └── images │ │ │ │ │ └── date.png │ │ │ ├── index.js │ │ │ └── n22-date-picker.vue │ │ ├── n22-dist-picker │ │ │ ├── index.js │ │ │ └── n22-dis-picker.vue │ │ ├── n22-field │ │ │ ├── index.js │ │ │ └── n22-field.vue │ │ ├── n22-highlight │ │ │ ├── index.js │ │ │ └── n22-highlight.vue │ │ ├── n22-input │ │ │ ├── assets │ │ │ │ └── images │ │ │ │ │ └── close.png │ │ │ ├── index.js │ │ │ └── n22-input.vue │ │ ├── n22-map │ │ │ ├── assets │ │ │ │ └── html │ │ │ │ │ └── map.html │ │ │ ├── index.js │ │ │ └── n22-map.vue │ │ ├── n22-nation │ │ │ ├── assets │ │ │ │ ├── data │ │ │ │ │ └── districts.js │ │ │ │ ├── images │ │ │ │ │ ├── close.png │ │ │ │ │ └── down.png │ │ │ │ └── lib │ │ │ │ │ └── addressUtils.js │ │ │ ├── index.js │ │ │ └── n22-nation.vue │ │ ├── n22-page │ │ │ ├── index.js │ │ │ └── n22-page.vue │ │ ├── n22-picker │ │ │ ├── assets │ │ │ │ └── images │ │ │ │ │ └── down.png │ │ │ ├── index.js │ │ │ └── n22-picker.vue │ │ ├── n22-scroll-y │ │ │ ├── index.js │ │ │ └── n22-scroll-y.vue │ │ ├── n22-sign │ │ │ ├── assets │ │ │ │ ├── document │ │ │ │ │ └── 信手书手写签名控件MiniCore_HTML5版使用文档.pdf │ │ │ │ └── src │ │ │ │ │ ├── css │ │ │ │ │ ├── canvas_css.css │ │ │ │ │ ├── mw480Portrait.css │ │ │ │ │ ├── plugin.css │ │ │ │ │ ├── sp.css │ │ │ │ │ └── sw1024.css │ │ │ │ │ └── index.js │ │ │ ├── index.js │ │ │ └── n22-sign.vue │ │ ├── n22-switch │ │ │ ├── assets │ │ │ │ └── images │ │ │ │ │ ├── female.png │ │ │ │ │ └── male.png │ │ │ ├── index.js │ │ │ └── n22-switch.vue │ │ ├── n22-tab │ │ │ ├── index.js │ │ │ └── n22-tab.vue │ │ ├── n22-touch │ │ │ ├── index.js │ │ │ └── n22-touch.vue │ │ ├── n22-video │ │ │ ├── assets │ │ │ │ └── play.png │ │ │ ├── index.js │ │ │ └── n22-video.vue │ │ └── n22-zoom │ │ │ ├── index.js │ │ │ └── n22-zoom.vue │ ├── directives │ │ ├── README.md │ │ └── clickoutside.js │ └── index.js ├── filters │ └── globalFilter.js ├── handlers │ ├── README.md │ └── commonHandler.js ├── main.js ├── pages │ └── demo │ │ ├── Demo.vue │ │ ├── DemoMain.vue │ │ ├── N22Address.vue │ │ ├── N22Aninmate.vue │ │ ├── N22Calendar.vue │ │ ├── N22Canvas.vue │ │ ├── N22CellSwipe.vue │ │ ├── N22DatePicker.vue │ │ ├── N22Field.vue │ │ ├── N22Highlight.vue │ │ ├── N22Icon.vue │ │ ├── N22Input.vue │ │ ├── N22JPush.vue │ │ ├── N22List.vue │ │ ├── N22Map.vue │ │ ├── N22Native.vue │ │ ├── N22Picker.vue │ │ ├── N22Render.vue │ │ ├── N22Scroll.vue │ │ ├── N22ScrollTemp.vue │ │ ├── N22Search.vue │ │ ├── N22Sign.vue │ │ ├── N22SplashScreen.vue │ │ ├── N22Switch.vue │ │ ├── N22Tab.vue │ │ ├── N22Template.vue │ │ ├── N22Touch.vue │ │ ├── N22Utils.vue │ │ ├── N22Version.vue │ │ ├── N22Video.vue │ │ ├── N22WeChat.vue │ │ ├── N22Zombi.vue │ │ ├── N22Zoom.vue │ │ ├── README.md │ │ ├── commponts │ │ ├── README.md │ │ ├── n22-render.js │ │ └── n22-sun.vue │ │ └── directives │ │ └── README.md ├── routers │ ├── demo.js │ └── index.js ├── utils │ ├── cache.js │ ├── environment.js │ ├── ext.js │ ├── extend │ │ └── jpush.js │ ├── format.js │ ├── http.js │ ├── index.js │ ├── native.js │ ├── ui.js │ ├── validator.js │ └── wechat.js └── vuex │ ├── modules │ └── common.js │ └── store.js └── static ├── .gitkeep ├── font-awesome ├── HELP-US-OUT.txt ├── css │ ├── font-awesome.css │ └── font-awesome.min.css ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ └── fontawesome-webfont.woff2 ├── less │ ├── animated.less │ ├── bordered-pulled.less │ ├── core.less │ ├── fixed-width.less │ ├── font-awesome.less │ ├── icons.less │ ├── larger.less │ ├── list.less │ ├── mixins.less │ ├── path.less │ ├── rotated-flipped.less │ ├── screen-reader.less │ ├── stacked.less │ └── variables.less └── scss │ ├── _animated.scss │ ├── _bordered-pulled.scss │ ├── _core.scss │ ├── _fixed-width.scss │ ├── _icons.scss │ ├── _larger.scss │ ├── _list.scss │ ├── _mixins.scss │ ├── _path.scss │ ├── _rotated-flipped.scss │ ├── _screen-reader.scss │ ├── _stacked.scss │ ├── _variables.scss │ └── font-awesome.scss ├── html └── map.html ├── images ├── baiping.gif ├── footer │ ├── home.png │ ├── home_active.png │ ├── jour.png │ ├── jour_active.png │ ├── pro.png │ ├── pro_active.png │ ├── proposal.png │ └── proposal_active.png ├── icon │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ ├── eye.png │ └── eye_active.png ├── plants │ ├── 1.png │ ├── UI切图 │ │ ├── 场景 │ │ │ ├── 游戏背景-1.jpg │ │ │ └── 游戏背景-2.jpg │ │ ├── 时间 分数板 │ │ │ └── images │ │ │ │ ├── 分数.png │ │ │ │ └── 时间.jpg │ │ ├── 种子-1 │ │ │ └── images │ │ │ │ ├── 种子1_03.jpg │ │ │ │ ├── 种子1_07.png │ │ │ │ ├── 种子1_10.jpg │ │ │ │ └── 种子1_13.jpg │ │ ├── 种子-2 │ │ │ └── images │ │ │ │ ├── 种子2_03.jpg │ │ │ │ ├── 种子2_06.png │ │ │ │ ├── 种子2_09.jpg │ │ │ │ └── 种子2_12.jpg │ │ ├── 种子-3 │ │ │ └── images │ │ │ │ ├── 种子-3_03.jpg │ │ │ │ ├── 种子-3_07.png │ │ │ │ ├── 种子-3_10.jpg │ │ │ │ └── 种子-3_13.jpg │ │ ├── 蓄力 │ │ │ └── images │ │ │ │ ├── 蓄力槽_02.jpg │ │ │ │ ├── 蓄力槽_05.jpg │ │ │ │ ├── 蓄力槽_07.jpg │ │ │ │ ├── 蓄力槽_08.jpg │ │ │ │ ├── 蓄力槽_11.jpg │ │ │ │ └── 蓄力槽_13.png │ │ └── 蓄力指引 │ │ │ └── images │ │ │ ├── 指引_06.jpg │ │ │ ├── 指引_10.png │ │ │ └── 指引_15.jpg │ ├── bg.jpg │ ├── dust.png │ ├── idle │ │ ├── idle_00.png │ │ ├── idle_01.png │ │ ├── idle_02.png │ │ ├── idle_03.png │ │ ├── idle_04.png │ │ ├── idle_05.png │ │ ├── idle_06.png │ │ ├── idle_07.png │ │ ├── idle_08.png │ │ ├── idle_09.png │ │ ├── idle_10.png │ │ ├── idle_11.png │ │ ├── idle_12.png │ │ ├── idle_13.png │ │ ├── idle_14.png │ │ ├── idle_15.png │ │ ├── idle_16.png │ │ └── idle_17.png │ ├── loadding │ │ ├── loadding_06.png │ │ ├── loadding_1.png │ │ ├── loadding_17.png │ │ ├── loadding_2.png │ │ └── loadding_3.png │ ├── loadding_bg.jpg │ ├── plant_01 │ │ ├── plant_01.jpg │ │ ├── plant_01.png │ │ ├── plant_02.jpg │ │ ├── plant_02.png │ │ ├── plant_03.jpg │ │ ├── plant_03.png │ │ └── plant_04.png │ ├── score.png │ ├── sun.png │ ├── time.jpg │ ├── time.png │ ├── timeOver │ │ ├── time_1.png │ │ ├── time_2.png │ │ └── time_3.png │ └── zombies │ │ ├── attack │ │ ├── attack_00.png │ │ ├── attack_01.png │ │ ├── attack_02.png │ │ ├── attack_03.png │ │ ├── attack_04.png │ │ ├── attack_05.png │ │ ├── attack_06.png │ │ ├── attack_07.png │ │ ├── attack_08.png │ │ ├── attack_09.png │ │ ├── attack_10.png │ │ ├── attack_11.png │ │ ├── attack_12.png │ │ ├── attack_13.png │ │ ├── attack_14.png │ │ ├── attack_15.png │ │ ├── attack_16.png │ │ ├── attack_17.png │ │ ├── attack_18.png │ │ ├── attack_19.png │ │ └── attack_20.png │ │ ├── die │ │ ├── die_00.png │ │ ├── die_01.png │ │ ├── die_02.png │ │ ├── die_03.png │ │ ├── die_04.png │ │ ├── die_05.png │ │ ├── die_06.png │ │ ├── die_07.png │ │ ├── die_08.png │ │ └── die_09.png │ │ ├── dieboom │ │ ├── dieboom_00.png │ │ ├── dieboom_01.png │ │ ├── dieboom_02.png │ │ ├── dieboom_03.png │ │ ├── dieboom_04.png │ │ ├── dieboom_05.png │ │ ├── dieboom_06.png │ │ ├── dieboom_07.png │ │ ├── dieboom_08.png │ │ ├── dieboom_09.png │ │ ├── dieboom_10.png │ │ ├── dieboom_11.png │ │ ├── dieboom_12.png │ │ ├── dieboom_13.png │ │ ├── dieboom_14.png │ │ ├── dieboom_15.png │ │ ├── dieboom_16.png │ │ ├── dieboom_17.png │ │ ├── dieboom_18.png │ │ └── dieboom_19.png │ │ ├── dying │ │ ├── body │ │ │ ├── body_00.png │ │ │ ├── body_01.png │ │ │ ├── body_02.png │ │ │ ├── body_03.png │ │ │ ├── body_04.png │ │ │ ├── body_05.png │ │ │ ├── body_06.png │ │ │ ├── body_07.png │ │ │ ├── body_08.png │ │ │ ├── body_09.png │ │ │ ├── body_10.png │ │ │ ├── body_11.png │ │ │ ├── body_12.png │ │ │ ├── body_13.png │ │ │ ├── body_14.png │ │ │ ├── body_15.png │ │ │ ├── body_16.png │ │ │ └── body_17.png │ │ └── head │ │ │ ├── head_00.png │ │ │ ├── head_01.png │ │ │ ├── head_02.png │ │ │ ├── head_03.png │ │ │ ├── head_04.png │ │ │ ├── head_05.png │ │ │ ├── head_06.png │ │ │ ├── head_07.png │ │ │ ├── head_08.png │ │ │ ├── head_09.png │ │ │ ├── head_10.png │ │ │ └── head_11.png │ │ ├── idle │ │ ├── idle_00.png │ │ ├── idle_01.png │ │ ├── idle_02.png │ │ ├── idle_03.png │ │ ├── idle_04.png │ │ ├── idle_05.png │ │ ├── idle_06.png │ │ ├── idle_07.png │ │ ├── idle_08.png │ │ ├── idle_09.png │ │ ├── idle_10.png │ │ ├── idle_11.png │ │ ├── idle_12.png │ │ ├── idle_13.png │ │ ├── idle_14.png │ │ ├── idle_15.png │ │ ├── idle_16.png │ │ ├── idle_17.png │ │ ├── idle_18.png │ │ ├── idle_19.png │ │ ├── idle_20.png │ │ ├── idle_21.png │ │ ├── idle_22.png │ │ ├── idle_23.png │ │ ├── idle_24.png │ │ ├── idle_25.png │ │ ├── idle_26.png │ │ ├── idle_27.png │ │ ├── idle_28.png │ │ ├── idle_29.png │ │ └── idle_30.png │ │ └── run │ │ ├── run_00.png │ │ ├── run_01.png │ │ ├── run_02.png │ │ ├── run_03.png │ │ ├── run_04.png │ │ ├── run_05.png │ │ ├── run_06.png │ │ ├── run_07.png │ │ ├── run_08.png │ │ ├── run_09.png │ │ ├── run_10.png │ │ ├── run_11.png │ │ ├── run_12.png │ │ ├── run_13.png │ │ ├── run_14.png │ │ ├── run_15.png │ │ ├── run_16.png │ │ ├── run_17.png │ │ ├── run_18.png │ │ ├── run_19.png │ │ ├── run_20.png │ │ ├── run_21.png │ │ ├── run_22.png │ │ ├── run_23.png │ │ ├── run_24.png │ │ ├── run_25.png │ │ ├── run_26.png │ │ ├── run_27.png │ │ ├── run_28.png │ │ ├── run_29.png │ │ └── run_30.png ├── process │ └── m_process.jpg └── screen │ ├── 1.png │ ├── 11.png │ ├── 2.png │ ├── 22.png │ ├── 3.png │ ├── bg.png │ ├── third.jpeg │ ├── two.jpeg │ ├── two.png │ └── two.psd └── lib ├── README.md ├── finger ├── alloy_finger.js └── alloy_finger.vue.js ├── jquery └── jquery.min.js ├── mescroll ├── README.md ├── mescroll-tip.txt ├── mescroll.m.js ├── mescroll.min.css ├── mescroll.min.js └── package.json ├── mobiscroll ├── css │ ├── icons_mobiscroll.eot │ ├── icons_mobiscroll.svg │ ├── icons_mobiscroll.ttf │ ├── icons_mobiscroll.woff │ └── mobiscroll.javascript.min.css └── js │ └── mobiscroll.javascript.min.js ├── patternLock ├── patternLock.css ├── patternLock.js └── patternLock.min.js ├── scroll ├── img │ └── mescroll-totop.png ├── src │ ├── utils │ │ └── helpers.js │ └── vue-scroll-behavior.js └── vue-scroll-behavior.js ├── security ├── DES3.js ├── base64.js └── md5-min.js └── swiper └── swiper.animate1.0.2.min.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | ["env", { 4 | "modules": false, 5 | "targets": { 6 | "browsers": ["> 1%", "last 2 versions", "not ie <= 8"] 7 | } 8 | }], 9 | "stage-2" 10 | ], 11 | "plugins": ["transform-runtime"], 12 | "env": { 13 | "test": { 14 | "presets": ["env", "stage-2"], 15 | "plugins": ["istanbul"] 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset = utf-8 5 | indent_style = space 6 | indent_size = 2 7 | end_of_line = lf 8 | insert_final_newline = true 9 | trim_trailing_whitespace = true 10 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | src/assets/**/*.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | dist/ 4 | .vscode/ 5 | npm-debug.log* 6 | yarn-debug.log* 7 | yarn-error.log* 8 | 9 | # Editor directories and files 10 | .idea 11 | *.suo 12 | *.ntvs* 13 | *.njsproj 14 | *.sln 15 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "esversion":6, 3 | "asi":true, 4 | "eqeqeq":false 5 | } -------------------------------------------------------------------------------- /.postcssrc.js: -------------------------------------------------------------------------------- 1 | // https://github.com/michael-ciniawsky/postcss-load-config 2 | 3 | module.exports = { 4 | "plugins": { 5 | // to edit target browsers: use "browserslist" field in package.json 6 | "autoprefixer": {} 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-cayman -------------------------------------------------------------------------------- /build/dev-client.js: -------------------------------------------------------------------------------- 1 | /* eslint-disable */ 2 | require('eventsource-polyfill') 3 | var hotClient = require('webpack-hot-middleware/client?noInfo=true&reload=true') 4 | 5 | hotClient.subscribe(function (event) { 6 | if (event.action === 'reload') { 7 | window.location.reload() 8 | } 9 | }) 10 | -------------------------------------------------------------------------------- /build/vue-loader.conf.js: -------------------------------------------------------------------------------- 1 | var utils = require('./utils') 2 | var config = require('../config') 3 | var isProduction = process.env.NODE_ENV === 'production' 4 | 5 | module.exports = { 6 | loaders: utils.cssLoaders({ 7 | sourceMap: isProduction 8 | ? config.build.productionSourceMap 9 | : config.dev.cssSourceMap, 10 | extract: isProduction 11 | }), 12 | transformToRequire: { 13 | video: 'src', 14 | source: 'src', 15 | img: 'src', 16 | image: 'xlink:href' 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /config/dev.env.js: -------------------------------------------------------------------------------- 1 | var merge = require('webpack-merge') 2 | var prodEnv = require('./prod.env') 3 | 4 | module.exports = merge(prodEnv, { 5 | NODE_ENV: '"development"' 6 | }) 7 | -------------------------------------------------------------------------------- /config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /cordova.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/cordova.js -------------------------------------------------------------------------------- /dep/index.html: -------------------------------------------------------------------------------- 1 | 移动前端框架
-------------------------------------------------------------------------------- /dep/static/font-awesome/HELP-US-OUT.txt: -------------------------------------------------------------------------------- 1 | I hope you love Font Awesome. If you've found it useful, please do me a favor and check out my latest project, 2 | Fort Awesome (https://fortawesome.com). It makes it easy to put the perfect icons on your website. Choose from our awesome, 3 | comprehensive icon sets or copy and paste your own. 4 | 5 | Please. Check it out. 6 | 7 | -Dave Gandy 8 | -------------------------------------------------------------------------------- /dep/static/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /dep/static/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /dep/static/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /dep/static/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /dep/static/font-awesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/font-awesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /dep/static/font-awesome/less/animated.less: -------------------------------------------------------------------------------- 1 | // Animated Icons 2 | // -------------------------- 3 | 4 | .@{fa-css-prefix}-spin { 5 | -webkit-animation: fa-spin 2s infinite linear; 6 | animation: fa-spin 2s infinite linear; 7 | } 8 | 9 | .@{fa-css-prefix}-pulse { 10 | -webkit-animation: fa-spin 1s infinite steps(8); 11 | animation: fa-spin 1s infinite steps(8); 12 | } 13 | 14 | @-webkit-keyframes fa-spin { 15 | 0% { 16 | -webkit-transform: rotate(0deg); 17 | transform: rotate(0deg); 18 | } 19 | 100% { 20 | -webkit-transform: rotate(359deg); 21 | transform: rotate(359deg); 22 | } 23 | } 24 | 25 | @keyframes fa-spin { 26 | 0% { 27 | -webkit-transform: rotate(0deg); 28 | transform: rotate(0deg); 29 | } 30 | 100% { 31 | -webkit-transform: rotate(359deg); 32 | transform: rotate(359deg); 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /dep/static/font-awesome/less/bordered-pulled.less: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em @fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .@{fa-css-prefix}-pull-left { float: left; } 11 | .@{fa-css-prefix}-pull-right { float: right; } 12 | 13 | .@{fa-css-prefix} { 14 | &.@{fa-css-prefix}-pull-left { margin-right: .3em; } 15 | &.@{fa-css-prefix}-pull-right { margin-left: .3em; } 16 | } 17 | 18 | /* Deprecated as of 4.4.0 */ 19 | .pull-right { float: right; } 20 | .pull-left { float: left; } 21 | 22 | .@{fa-css-prefix} { 23 | &.pull-left { margin-right: .3em; } 24 | &.pull-right { margin-left: .3em; } 25 | } 26 | -------------------------------------------------------------------------------- /dep/static/font-awesome/less/core.less: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix} { 5 | display: inline-block; 6 | font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | 12 | } 13 | -------------------------------------------------------------------------------- /dep/static/font-awesome/less/fixed-width.less: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .@{fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /dep/static/font-awesome/less/font-awesome.less: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables.less"; 7 | @import "mixins.less"; 8 | @import "path.less"; 9 | @import "core.less"; 10 | @import "larger.less"; 11 | @import "fixed-width.less"; 12 | @import "list.less"; 13 | @import "bordered-pulled.less"; 14 | @import "animated.less"; 15 | @import "rotated-flipped.less"; 16 | @import "stacked.less"; 17 | @import "icons.less"; 18 | @import "screen-reader.less"; 19 | -------------------------------------------------------------------------------- /dep/static/font-awesome/less/larger.less: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .@{fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .@{fa-css-prefix}-2x { font-size: 2em; } 11 | .@{fa-css-prefix}-3x { font-size: 3em; } 12 | .@{fa-css-prefix}-4x { font-size: 4em; } 13 | .@{fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /dep/static/font-awesome/less/list.less: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: @fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .@{fa-css-prefix}-li { 11 | position: absolute; 12 | left: -@fa-li-width; 13 | width: @fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.@{fa-css-prefix}-lg { 17 | left: (-@fa-li-width + (4em / 14)); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /dep/static/font-awesome/less/path.less: -------------------------------------------------------------------------------- 1 | /* FONT PATH 2 | * -------------------------- */ 3 | 4 | @font-face { 5 | font-family: 'FontAwesome'; 6 | src: url('@{fa-font-path}/fontawesome-webfont.eot?v=@{fa-version}'); 7 | src: url('@{fa-font-path}/fontawesome-webfont.eot?#iefix&v=@{fa-version}') format('embedded-opentype'), 8 | url('@{fa-font-path}/fontawesome-webfont.woff2?v=@{fa-version}') format('woff2'), 9 | url('@{fa-font-path}/fontawesome-webfont.woff?v=@{fa-version}') format('woff'), 10 | url('@{fa-font-path}/fontawesome-webfont.ttf?v=@{fa-version}') format('truetype'), 11 | url('@{fa-font-path}/fontawesome-webfont.svg?v=@{fa-version}#fontawesomeregular') format('svg'); 12 | // src: url('@{fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts 13 | font-weight: normal; 14 | font-style: normal; 15 | } 16 | -------------------------------------------------------------------------------- /dep/static/font-awesome/less/rotated-flipped.less: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-rotate-90 { .fa-icon-rotate(90deg, 1); } 5 | .@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); } 6 | .@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); } 7 | 8 | .@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); } 9 | .@{fa-css-prefix}-flip-vertical { .fa-icon-flip(1, -1, 2); } 10 | 11 | // Hook for IE8-9 12 | // ------------------------- 13 | 14 | :root .@{fa-css-prefix}-rotate-90, 15 | :root .@{fa-css-prefix}-rotate-180, 16 | :root .@{fa-css-prefix}-rotate-270, 17 | :root .@{fa-css-prefix}-flip-horizontal, 18 | :root .@{fa-css-prefix}-flip-vertical { 19 | filter: none; 20 | } 21 | -------------------------------------------------------------------------------- /dep/static/font-awesome/less/screen-reader.less: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { .sr-only(); } 5 | .sr-only-focusable { .sr-only-focusable(); } 6 | -------------------------------------------------------------------------------- /dep/static/font-awesome/less/stacked.less: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .@{fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .@{fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .@{fa-css-prefix}-inverse { color: @fa-inverse; } 21 | -------------------------------------------------------------------------------- /dep/static/font-awesome/scss/_animated.scss: -------------------------------------------------------------------------------- 1 | // Spinning Icons 2 | // -------------------------- 3 | 4 | .#{$fa-css-prefix}-spin { 5 | -webkit-animation: fa-spin 2s infinite linear; 6 | animation: fa-spin 2s infinite linear; 7 | } 8 | 9 | .#{$fa-css-prefix}-pulse { 10 | -webkit-animation: fa-spin 1s infinite steps(8); 11 | animation: fa-spin 1s infinite steps(8); 12 | } 13 | 14 | @-webkit-keyframes fa-spin { 15 | 0% { 16 | -webkit-transform: rotate(0deg); 17 | transform: rotate(0deg); 18 | } 19 | 100% { 20 | -webkit-transform: rotate(359deg); 21 | transform: rotate(359deg); 22 | } 23 | } 24 | 25 | @keyframes fa-spin { 26 | 0% { 27 | -webkit-transform: rotate(0deg); 28 | transform: rotate(0deg); 29 | } 30 | 100% { 31 | -webkit-transform: rotate(359deg); 32 | transform: rotate(359deg); 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /dep/static/font-awesome/scss/_bordered-pulled.scss: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em $fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .#{$fa-css-prefix}-pull-left { float: left; } 11 | .#{$fa-css-prefix}-pull-right { float: right; } 12 | 13 | .#{$fa-css-prefix} { 14 | &.#{$fa-css-prefix}-pull-left { margin-right: .3em; } 15 | &.#{$fa-css-prefix}-pull-right { margin-left: .3em; } 16 | } 17 | 18 | /* Deprecated as of 4.4.0 */ 19 | .pull-right { float: right; } 20 | .pull-left { float: left; } 21 | 22 | .#{$fa-css-prefix} { 23 | &.pull-left { margin-right: .3em; } 24 | &.pull-right { margin-left: .3em; } 25 | } 26 | -------------------------------------------------------------------------------- /dep/static/font-awesome/scss/_core.scss: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix} { 5 | display: inline-block; 6 | font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | 12 | } 13 | -------------------------------------------------------------------------------- /dep/static/font-awesome/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /dep/static/font-awesome/scss/_larger.scss: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .#{$fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .#{$fa-css-prefix}-2x { font-size: 2em; } 11 | .#{$fa-css-prefix}-3x { font-size: 3em; } 12 | .#{$fa-css-prefix}-4x { font-size: 4em; } 13 | .#{$fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /dep/static/font-awesome/scss/_list.scss: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: $fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .#{$fa-css-prefix}-li { 11 | position: absolute; 12 | left: -$fa-li-width; 13 | width: $fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.#{$fa-css-prefix}-lg { 17 | left: -$fa-li-width + (4em / 14); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /dep/static/font-awesome/scss/_path.scss: -------------------------------------------------------------------------------- 1 | /* FONT PATH 2 | * -------------------------- */ 3 | 4 | @font-face { 5 | font-family: 'FontAwesome'; 6 | src: url('#{$fa-font-path}/fontawesome-webfont.eot?v=#{$fa-version}'); 7 | src: url('#{$fa-font-path}/fontawesome-webfont.eot?#iefix&v=#{$fa-version}') format('embedded-opentype'), 8 | url('#{$fa-font-path}/fontawesome-webfont.woff2?v=#{$fa-version}') format('woff2'), 9 | url('#{$fa-font-path}/fontawesome-webfont.woff?v=#{$fa-version}') format('woff'), 10 | url('#{$fa-font-path}/fontawesome-webfont.ttf?v=#{$fa-version}') format('truetype'), 11 | url('#{$fa-font-path}/fontawesome-webfont.svg?v=#{$fa-version}#fontawesomeregular') format('svg'); 12 | // src: url('#{$fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts 13 | font-weight: normal; 14 | font-style: normal; 15 | } 16 | -------------------------------------------------------------------------------- /dep/static/font-awesome/scss/_rotated-flipped.scss: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); } 5 | .#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); } 6 | .#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); } 7 | 8 | .#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); } 9 | .#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); } 10 | 11 | // Hook for IE8-9 12 | // ------------------------- 13 | 14 | :root .#{$fa-css-prefix}-rotate-90, 15 | :root .#{$fa-css-prefix}-rotate-180, 16 | :root .#{$fa-css-prefix}-rotate-270, 17 | :root .#{$fa-css-prefix}-flip-horizontal, 18 | :root .#{$fa-css-prefix}-flip-vertical { 19 | filter: none; 20 | } 21 | -------------------------------------------------------------------------------- /dep/static/font-awesome/scss/_screen-reader.scss: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { @include sr-only(); } 5 | .sr-only-focusable { @include sr-only-focusable(); } 6 | -------------------------------------------------------------------------------- /dep/static/font-awesome/scss/_stacked.scss: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .#{$fa-css-prefix}-stack-1x, .#{$fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .#{$fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .#{$fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .#{$fa-css-prefix}-inverse { color: $fa-inverse; } 21 | -------------------------------------------------------------------------------- /dep/static/font-awesome/scss/font-awesome.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables"; 7 | @import "mixins"; 8 | @import "path"; 9 | @import "core"; 10 | @import "larger"; 11 | @import "fixed-width"; 12 | @import "list"; 13 | @import "bordered-pulled"; 14 | @import "animated"; 15 | @import "rotated-flipped"; 16 | @import "stacked"; 17 | @import "icons"; 18 | @import "screen-reader"; 19 | -------------------------------------------------------------------------------- /dep/static/html/map.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 地图展示 8 | 9 | 10 |
11 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /dep/static/images/baiping.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/baiping.gif -------------------------------------------------------------------------------- /dep/static/images/footer/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/footer/home.png -------------------------------------------------------------------------------- /dep/static/images/footer/home_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/footer/home_active.png -------------------------------------------------------------------------------- /dep/static/images/footer/jour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/footer/jour.png -------------------------------------------------------------------------------- /dep/static/images/footer/jour_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/footer/jour_active.png -------------------------------------------------------------------------------- /dep/static/images/footer/pro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/footer/pro.png -------------------------------------------------------------------------------- /dep/static/images/footer/pro_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/footer/pro_active.png -------------------------------------------------------------------------------- /dep/static/images/footer/proposal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/footer/proposal.png -------------------------------------------------------------------------------- /dep/static/images/footer/proposal_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/footer/proposal_active.png -------------------------------------------------------------------------------- /dep/static/images/icon/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/icon/1.png -------------------------------------------------------------------------------- /dep/static/images/icon/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/icon/2.png -------------------------------------------------------------------------------- /dep/static/images/icon/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/icon/3.png -------------------------------------------------------------------------------- /dep/static/images/icon/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/icon/4.png -------------------------------------------------------------------------------- /dep/static/images/icon/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/icon/5.png -------------------------------------------------------------------------------- /dep/static/images/icon/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/icon/6.png -------------------------------------------------------------------------------- /dep/static/images/icon/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/icon/7.png -------------------------------------------------------------------------------- /dep/static/images/icon/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/icon/8.png -------------------------------------------------------------------------------- /dep/static/images/icon/eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/icon/eye.png -------------------------------------------------------------------------------- /dep/static/images/icon/eye_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/icon/eye_active.png -------------------------------------------------------------------------------- /dep/static/images/plants/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/1.png -------------------------------------------------------------------------------- /dep/static/images/plants/UI切图/场景/游戏背景-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/UI切图/场景/游戏背景-1.jpg -------------------------------------------------------------------------------- /dep/static/images/plants/UI切图/场景/游戏背景-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/UI切图/场景/游戏背景-2.jpg -------------------------------------------------------------------------------- /dep/static/images/plants/UI切图/时间 分数板/images/分数.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/UI切图/时间 分数板/images/分数.png -------------------------------------------------------------------------------- /dep/static/images/plants/UI切图/时间 分数板/images/时间.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/UI切图/时间 分数板/images/时间.jpg -------------------------------------------------------------------------------- /dep/static/images/plants/UI切图/种子-1/images/种子1_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/UI切图/种子-1/images/种子1_03.jpg -------------------------------------------------------------------------------- /dep/static/images/plants/UI切图/种子-1/images/种子1_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/UI切图/种子-1/images/种子1_07.png -------------------------------------------------------------------------------- /dep/static/images/plants/UI切图/种子-1/images/种子1_10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/UI切图/种子-1/images/种子1_10.jpg -------------------------------------------------------------------------------- /dep/static/images/plants/UI切图/种子-1/images/种子1_13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/UI切图/种子-1/images/种子1_13.jpg -------------------------------------------------------------------------------- /dep/static/images/plants/UI切图/种子-2/images/种子2_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/UI切图/种子-2/images/种子2_03.jpg -------------------------------------------------------------------------------- /dep/static/images/plants/UI切图/种子-2/images/种子2_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/UI切图/种子-2/images/种子2_06.png -------------------------------------------------------------------------------- /dep/static/images/plants/UI切图/种子-2/images/种子2_09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/UI切图/种子-2/images/种子2_09.jpg -------------------------------------------------------------------------------- /dep/static/images/plants/UI切图/种子-2/images/种子2_12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/UI切图/种子-2/images/种子2_12.jpg -------------------------------------------------------------------------------- /dep/static/images/plants/UI切图/种子-3/images/种子-3_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/UI切图/种子-3/images/种子-3_03.jpg -------------------------------------------------------------------------------- /dep/static/images/plants/UI切图/种子-3/images/种子-3_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/UI切图/种子-3/images/种子-3_07.png -------------------------------------------------------------------------------- /dep/static/images/plants/UI切图/种子-3/images/种子-3_10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/UI切图/种子-3/images/种子-3_10.jpg -------------------------------------------------------------------------------- /dep/static/images/plants/UI切图/种子-3/images/种子-3_13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/UI切图/种子-3/images/种子-3_13.jpg -------------------------------------------------------------------------------- /dep/static/images/plants/UI切图/蓄力/images/蓄力槽_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/UI切图/蓄力/images/蓄力槽_02.jpg -------------------------------------------------------------------------------- /dep/static/images/plants/UI切图/蓄力/images/蓄力槽_05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/UI切图/蓄力/images/蓄力槽_05.jpg -------------------------------------------------------------------------------- /dep/static/images/plants/UI切图/蓄力/images/蓄力槽_07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/UI切图/蓄力/images/蓄力槽_07.jpg -------------------------------------------------------------------------------- /dep/static/images/plants/UI切图/蓄力/images/蓄力槽_08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/UI切图/蓄力/images/蓄力槽_08.jpg -------------------------------------------------------------------------------- /dep/static/images/plants/UI切图/蓄力/images/蓄力槽_11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/UI切图/蓄力/images/蓄力槽_11.jpg -------------------------------------------------------------------------------- /dep/static/images/plants/UI切图/蓄力/images/蓄力槽_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/UI切图/蓄力/images/蓄力槽_13.png -------------------------------------------------------------------------------- /dep/static/images/plants/UI切图/蓄力指引/images/指引_06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/UI切图/蓄力指引/images/指引_06.jpg -------------------------------------------------------------------------------- /dep/static/images/plants/UI切图/蓄力指引/images/指引_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/UI切图/蓄力指引/images/指引_10.png -------------------------------------------------------------------------------- /dep/static/images/plants/UI切图/蓄力指引/images/指引_15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/UI切图/蓄力指引/images/指引_15.jpg -------------------------------------------------------------------------------- /dep/static/images/plants/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/bg.jpg -------------------------------------------------------------------------------- /dep/static/images/plants/dust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/dust.png -------------------------------------------------------------------------------- /dep/static/images/plants/idle/idle_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/idle/idle_00.png -------------------------------------------------------------------------------- /dep/static/images/plants/idle/idle_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/idle/idle_01.png -------------------------------------------------------------------------------- /dep/static/images/plants/idle/idle_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/idle/idle_02.png -------------------------------------------------------------------------------- /dep/static/images/plants/idle/idle_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/idle/idle_03.png -------------------------------------------------------------------------------- /dep/static/images/plants/idle/idle_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/idle/idle_04.png -------------------------------------------------------------------------------- /dep/static/images/plants/idle/idle_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/idle/idle_05.png -------------------------------------------------------------------------------- /dep/static/images/plants/idle/idle_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/idle/idle_06.png -------------------------------------------------------------------------------- /dep/static/images/plants/idle/idle_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/idle/idle_07.png -------------------------------------------------------------------------------- /dep/static/images/plants/idle/idle_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/idle/idle_08.png -------------------------------------------------------------------------------- /dep/static/images/plants/idle/idle_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/idle/idle_09.png -------------------------------------------------------------------------------- /dep/static/images/plants/idle/idle_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/idle/idle_10.png -------------------------------------------------------------------------------- /dep/static/images/plants/idle/idle_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/idle/idle_11.png -------------------------------------------------------------------------------- /dep/static/images/plants/idle/idle_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/idle/idle_12.png -------------------------------------------------------------------------------- /dep/static/images/plants/idle/idle_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/idle/idle_13.png -------------------------------------------------------------------------------- /dep/static/images/plants/idle/idle_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/idle/idle_14.png -------------------------------------------------------------------------------- /dep/static/images/plants/idle/idle_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/idle/idle_15.png -------------------------------------------------------------------------------- /dep/static/images/plants/idle/idle_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/idle/idle_16.png -------------------------------------------------------------------------------- /dep/static/images/plants/idle/idle_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/idle/idle_17.png -------------------------------------------------------------------------------- /dep/static/images/plants/loadding/loadding_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/loadding/loadding_06.png -------------------------------------------------------------------------------- /dep/static/images/plants/loadding/loadding_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/loadding/loadding_1.png -------------------------------------------------------------------------------- /dep/static/images/plants/loadding/loadding_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/loadding/loadding_17.png -------------------------------------------------------------------------------- /dep/static/images/plants/loadding/loadding_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/loadding/loadding_2.png -------------------------------------------------------------------------------- /dep/static/images/plants/loadding/loadding_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/loadding/loadding_3.png -------------------------------------------------------------------------------- /dep/static/images/plants/loadding_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/loadding_bg.jpg -------------------------------------------------------------------------------- /dep/static/images/plants/plant_01/plant_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/plant_01/plant_01.jpg -------------------------------------------------------------------------------- /dep/static/images/plants/plant_01/plant_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/plant_01/plant_01.png -------------------------------------------------------------------------------- /dep/static/images/plants/plant_01/plant_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/plant_01/plant_02.jpg -------------------------------------------------------------------------------- /dep/static/images/plants/plant_01/plant_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/plant_01/plant_02.png -------------------------------------------------------------------------------- /dep/static/images/plants/plant_01/plant_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/plant_01/plant_03.jpg -------------------------------------------------------------------------------- /dep/static/images/plants/plant_01/plant_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/plant_01/plant_03.png -------------------------------------------------------------------------------- /dep/static/images/plants/plant_01/plant_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/plant_01/plant_04.png -------------------------------------------------------------------------------- /dep/static/images/plants/score.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/score.png -------------------------------------------------------------------------------- /dep/static/images/plants/sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/sun.png -------------------------------------------------------------------------------- /dep/static/images/plants/time.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/time.jpg -------------------------------------------------------------------------------- /dep/static/images/plants/time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/time.png -------------------------------------------------------------------------------- /dep/static/images/plants/timeOver/time_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/timeOver/time_1.png -------------------------------------------------------------------------------- /dep/static/images/plants/timeOver/time_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/timeOver/time_2.png -------------------------------------------------------------------------------- /dep/static/images/plants/timeOver/time_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/timeOver/time_3.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/attack/attack_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/attack/attack_00.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/attack/attack_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/attack/attack_01.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/attack/attack_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/attack/attack_02.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/attack/attack_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/attack/attack_03.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/attack/attack_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/attack/attack_04.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/attack/attack_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/attack/attack_05.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/attack/attack_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/attack/attack_06.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/attack/attack_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/attack/attack_07.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/attack/attack_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/attack/attack_08.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/attack/attack_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/attack/attack_09.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/attack/attack_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/attack/attack_10.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/attack/attack_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/attack/attack_11.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/attack/attack_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/attack/attack_12.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/attack/attack_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/attack/attack_13.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/attack/attack_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/attack/attack_14.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/attack/attack_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/attack/attack_15.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/attack/attack_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/attack/attack_16.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/attack/attack_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/attack/attack_17.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/attack/attack_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/attack/attack_18.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/attack/attack_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/attack/attack_19.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/attack/attack_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/attack/attack_20.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/die/die_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/die/die_00.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/die/die_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/die/die_01.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/die/die_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/die/die_02.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/die/die_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/die/die_03.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/die/die_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/die/die_04.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/die/die_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/die/die_05.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/die/die_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/die/die_06.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/die/die_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/die/die_07.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/die/die_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/die/die_08.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/die/die_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/die/die_09.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/dieboom/dieboom_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/dieboom/dieboom_00.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/dieboom/dieboom_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/dieboom/dieboom_01.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/dieboom/dieboom_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/dieboom/dieboom_02.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/dieboom/dieboom_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/dieboom/dieboom_03.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/dieboom/dieboom_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/dieboom/dieboom_04.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/dieboom/dieboom_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/dieboom/dieboom_05.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/dieboom/dieboom_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/dieboom/dieboom_06.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/dieboom/dieboom_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/dieboom/dieboom_07.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/dieboom/dieboom_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/dieboom/dieboom_08.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/dieboom/dieboom_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/dieboom/dieboom_09.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/dieboom/dieboom_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/dieboom/dieboom_10.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/dieboom/dieboom_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/dieboom/dieboom_11.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/dieboom/dieboom_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/dieboom/dieboom_12.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/dieboom/dieboom_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/dieboom/dieboom_13.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/dieboom/dieboom_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/dieboom/dieboom_14.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/dieboom/dieboom_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/dieboom/dieboom_15.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/dieboom/dieboom_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/dieboom/dieboom_16.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/dieboom/dieboom_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/dieboom/dieboom_17.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/dieboom/dieboom_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/dieboom/dieboom_18.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/dieboom/dieboom_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/dieboom/dieboom_19.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/dying/body/body_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/dying/body/body_00.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/dying/body/body_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/dying/body/body_01.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/dying/body/body_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/dying/body/body_02.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/dying/body/body_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/dying/body/body_03.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/dying/body/body_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/dying/body/body_04.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/dying/body/body_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/dying/body/body_05.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/dying/body/body_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/dying/body/body_06.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/dying/body/body_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/dying/body/body_07.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/dying/body/body_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/dying/body/body_08.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/dying/body/body_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/dying/body/body_09.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/dying/body/body_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/dying/body/body_10.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/dying/body/body_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/dying/body/body_11.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/dying/body/body_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/dying/body/body_12.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/dying/body/body_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/dying/body/body_13.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/dying/body/body_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/dying/body/body_14.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/dying/body/body_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/dying/body/body_15.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/dying/body/body_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/dying/body/body_16.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/dying/body/body_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/dying/body/body_17.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/dying/head/head_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/dying/head/head_00.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/dying/head/head_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/dying/head/head_01.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/dying/head/head_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/dying/head/head_02.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/dying/head/head_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/dying/head/head_03.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/dying/head/head_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/dying/head/head_04.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/dying/head/head_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/dying/head/head_05.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/dying/head/head_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/dying/head/head_06.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/dying/head/head_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/dying/head/head_07.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/dying/head/head_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/dying/head/head_08.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/dying/head/head_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/dying/head/head_09.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/dying/head/head_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/dying/head/head_10.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/dying/head/head_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/dying/head/head_11.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/idle/idle_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/idle/idle_00.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/idle/idle_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/idle/idle_01.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/idle/idle_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/idle/idle_02.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/idle/idle_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/idle/idle_03.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/idle/idle_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/idle/idle_04.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/idle/idle_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/idle/idle_05.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/idle/idle_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/idle/idle_06.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/idle/idle_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/idle/idle_07.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/idle/idle_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/idle/idle_08.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/idle/idle_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/idle/idle_09.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/idle/idle_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/idle/idle_10.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/idle/idle_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/idle/idle_11.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/idle/idle_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/idle/idle_12.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/idle/idle_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/idle/idle_13.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/idle/idle_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/idle/idle_14.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/idle/idle_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/idle/idle_15.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/idle/idle_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/idle/idle_16.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/idle/idle_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/idle/idle_17.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/idle/idle_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/idle/idle_18.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/idle/idle_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/idle/idle_19.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/idle/idle_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/idle/idle_20.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/idle/idle_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/idle/idle_21.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/idle/idle_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/idle/idle_22.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/idle/idle_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/idle/idle_23.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/idle/idle_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/idle/idle_24.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/idle/idle_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/idle/idle_25.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/idle/idle_26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/idle/idle_26.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/idle/idle_27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/idle/idle_27.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/idle/idle_28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/idle/idle_28.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/idle/idle_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/idle/idle_29.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/idle/idle_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/idle/idle_30.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/run/run_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/run/run_00.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/run/run_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/run/run_01.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/run/run_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/run/run_02.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/run/run_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/run/run_03.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/run/run_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/run/run_04.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/run/run_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/run/run_05.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/run/run_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/run/run_06.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/run/run_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/run/run_07.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/run/run_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/run/run_08.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/run/run_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/run/run_09.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/run/run_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/run/run_10.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/run/run_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/run/run_11.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/run/run_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/run/run_12.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/run/run_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/run/run_13.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/run/run_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/run/run_14.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/run/run_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/run/run_15.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/run/run_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/run/run_16.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/run/run_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/run/run_17.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/run/run_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/run/run_18.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/run/run_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/run/run_19.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/run/run_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/run/run_20.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/run/run_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/run/run_21.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/run/run_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/run/run_22.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/run/run_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/run/run_23.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/run/run_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/run/run_24.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/run/run_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/run/run_25.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/run/run_26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/run/run_26.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/run/run_27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/run/run_27.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/run/run_28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/run/run_28.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/run/run_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/run/run_29.png -------------------------------------------------------------------------------- /dep/static/images/plants/zombies/run/run_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/plants/zombies/run/run_30.png -------------------------------------------------------------------------------- /dep/static/images/process/m_process.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/process/m_process.jpg -------------------------------------------------------------------------------- /dep/static/images/screen/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/screen/1.png -------------------------------------------------------------------------------- /dep/static/images/screen/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/screen/11.png -------------------------------------------------------------------------------- /dep/static/images/screen/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/screen/2.png -------------------------------------------------------------------------------- /dep/static/images/screen/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/screen/22.png -------------------------------------------------------------------------------- /dep/static/images/screen/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/screen/3.png -------------------------------------------------------------------------------- /dep/static/images/screen/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/screen/bg.png -------------------------------------------------------------------------------- /dep/static/images/screen/third.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/screen/third.jpeg -------------------------------------------------------------------------------- /dep/static/images/screen/two.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/screen/two.jpeg -------------------------------------------------------------------------------- /dep/static/images/screen/two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/screen/two.png -------------------------------------------------------------------------------- /dep/static/images/screen/two.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/images/screen/two.psd -------------------------------------------------------------------------------- /dep/static/img/bg.1b0f286.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/img/bg.1b0f286.jpg -------------------------------------------------------------------------------- /dep/static/img/bg.ce1f7be.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/img/bg.ce1f7be.png -------------------------------------------------------------------------------- /dep/static/img/loadding_1.7e6e8ea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/img/loadding_1.7e6e8ea.png -------------------------------------------------------------------------------- /dep/static/img/loadding_bg.eae4889.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/img/loadding_bg.eae4889.jpg -------------------------------------------------------------------------------- /dep/static/img/plant_01.1e81700.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/img/plant_01.1e81700.png -------------------------------------------------------------------------------- /dep/static/img/plant_02.1b965aa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/img/plant_02.1b965aa.png -------------------------------------------------------------------------------- /dep/static/img/plant_03.cbd2545.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/img/plant_03.cbd2545.png -------------------------------------------------------------------------------- /dep/static/img/plant_04.f7b2294.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/img/plant_04.f7b2294.png -------------------------------------------------------------------------------- /dep/static/img/play.34c4fbe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/img/play.34c4fbe.png -------------------------------------------------------------------------------- /dep/static/img/sun.21f9896.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/img/sun.21f9896.png -------------------------------------------------------------------------------- /dep/static/js/n22ScrollTemp.5c63e580bac90178305c.js: -------------------------------------------------------------------------------- 1 | webpackJsonp([17],{"08oN":function(n,t,e){"use strict";t.a={name:"n22ScrollTemp",components:{},data:function(){return{}},methods:{sunbmit:function(){}},mounted:function(){}}},Y7XW:function(n,t,e){"use strict";var o=function(){var n=this,t=n.$createElement,e=n._self._c||t;return e("div",[e("n22-scroll-y")],1)},c=[],r={render:o,staticRenderFns:c};t.a=r},qMZx:function(n,t,e){var o=e("yELL");"string"==typeof o&&(o=[[n.i,o,""]]),o.locals&&(n.exports=o.locals);e("rjj0")("14dde765",o,!0,{})},sx1e:function(n,t,e){"use strict";function o(n){e("qMZx")}Object.defineProperty(t,"__esModule",{value:!0});var c=e("08oN"),r=e("Y7XW"),s=e("VU/8"),u=o,i=s(c.a,r.a,!1,u,"data-v-1905c345",null);t.default=i.exports},yELL:function(n,t,e){t=n.exports=e("FZ+f")(!1),t.push([n.i,"",""])}}); -------------------------------------------------------------------------------- /dep/static/lib/README.md: -------------------------------------------------------------------------------- 1 | 1、页面滑动组件mescroll 地址:https://github.com/mescroll/mescroll 2 | -------------------------------------------------------------------------------- /dep/static/lib/mescroll/mescroll-tip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/lib/mescroll/mescroll-tip.txt -------------------------------------------------------------------------------- /dep/static/lib/mobiscroll/css/icons_mobiscroll.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/lib/mobiscroll/css/icons_mobiscroll.eot -------------------------------------------------------------------------------- /dep/static/lib/mobiscroll/css/icons_mobiscroll.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/lib/mobiscroll/css/icons_mobiscroll.ttf -------------------------------------------------------------------------------- /dep/static/lib/mobiscroll/css/icons_mobiscroll.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/lib/mobiscroll/css/icons_mobiscroll.woff -------------------------------------------------------------------------------- /dep/static/lib/scroll/img/mescroll-totop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/dep/static/lib/scroll/img/mescroll-totop.png -------------------------------------------------------------------------------- /questions.md: -------------------------------------------------------------------------------- 1 | 1、mint-ui 的loadding等组件是否需要挂在utils上面 2 | -------------------------------------------------------------------------------- /src/assets/bo/bo.js: -------------------------------------------------------------------------------- 1 | const bo = { 2 | } 3 | export default bo 4 | -------------------------------------------------------------------------------- /src/common/components/n22-address/assets/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/src/common/components/n22-address/assets/images/close.png -------------------------------------------------------------------------------- /src/common/components/n22-address/assets/lib/addressUtils.js: -------------------------------------------------------------------------------- 1 | import addressData from '../data/districts' 2 | // 获取省市区对应的中文 3 | const addressUtils = { 4 | // 通过地址code获取中文 5 | getAddressOfCn: function (key = '0') { 6 | let returnValue = null 7 | outer: for (let i in addressData) { 8 | if (typeof addressData[i] == 'object') { 9 | for (let j in addressData[i]) { 10 | if (j == key) { 11 | returnValue = addressData[i][j] 12 | break outer 13 | } 14 | } 15 | } else if (i == key) { 16 | returnValue = addressData[i] 17 | break outer 18 | } 19 | } 20 | return returnValue 21 | } 22 | } 23 | 24 | export default addressUtils 25 | -------------------------------------------------------------------------------- /src/common/components/n22-address/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @author jdf 3 | * @name 公共样式组件(手机端左右结构 eg: name:---) 4 | */ 5 | import N22Address from './n22-address' 6 | export default N22Address 7 | -------------------------------------------------------------------------------- /src/common/components/n22-calendar/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @author jdf 3 | * @name 日历组件 4 | */ 5 | import N22Calendar from './n22-calendar' 6 | export default N22Calendar 7 | -------------------------------------------------------------------------------- /src/common/components/n22-calendar/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/src/common/components/n22-calendar/left.png -------------------------------------------------------------------------------- /src/common/components/n22-calendar/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/src/common/components/n22-calendar/right.png -------------------------------------------------------------------------------- /src/common/components/n22-cell-swipe/index.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author: jdf 3 | * @Date: 2018-01-06 21:11:10 4 | * @Last Modified by: jdf 5 | * @Last Modified time: 2018-03-19 16:13:16 6 | * @desc 滑动删除组件 7 | * main 主列表 8 | * right 右侧滑出按钮列表 9 | */ 10 | import N22CellSwipe from './n22-cell-swipe' 11 | export default N22CellSwipe 12 | -------------------------------------------------------------------------------- /src/common/components/n22-date-picker/assets/images/date.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/src/common/components/n22-date-picker/assets/images/date.png -------------------------------------------------------------------------------- /src/common/components/n22-date-picker/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @author jdf 3 | * @name 日期组件 4 | */ 5 | import N22DatePicker from './n22-date-picker' 6 | export default N22DatePicker 7 | -------------------------------------------------------------------------------- /src/common/components/n22-dist-picker/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @author jdf 3 | * @name 日历组件 4 | */ 5 | import N22DisPicker from './n22-dis-picker' 6 | export default N22DisPicker 7 | -------------------------------------------------------------------------------- /src/common/components/n22-field/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @author jdf 3 | * @name 公共样式组件(手机端左右结构 eg: name:---) 4 | * @param label 左侧文字显示 5 | * @param need 填入必填项的值 6 | * @desc For example: 7 | * 8 | * 9 | * 10 | */ 11 | import N22Field from './n22-field' 12 | export default N22Field 13 | -------------------------------------------------------------------------------- /src/common/components/n22-highlight/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @author jdf 3 | * @name 语法高亮组件 4 | */ 5 | import N22Highlight from './n22-highlight' 6 | export default N22Highlight 7 | -------------------------------------------------------------------------------- /src/common/components/n22-input/assets/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/src/common/components/n22-input/assets/images/close.png -------------------------------------------------------------------------------- /src/common/components/n22-input/index.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author: jdf 3 | * @Date: 2018-01-06 21:10:40 4 | * @Last Modified by: jdf 5 | * @Last Modified time: 2018-01-12 17:12:38 6 | */ 7 | 8 | import N22Input from './n22-input' 9 | export default N22Input 10 | -------------------------------------------------------------------------------- /src/common/components/n22-map/assets/html/map.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 地图展示 8 | 9 | 10 |
11 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /src/common/components/n22-map/index.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author: jdf 3 | * @Date: 2018-01-06 21:13:55 4 | * @Last Modified by: jdf 5 | * @Last Modified time: 2018-01-25 15:23:23 6 | * @desc 双指缩放组件 7 | */ 8 | 9 | import N22Map from './n22-map' 10 | export default N22Map 11 | -------------------------------------------------------------------------------- /src/common/components/n22-nation/assets/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/src/common/components/n22-nation/assets/images/close.png -------------------------------------------------------------------------------- /src/common/components/n22-nation/assets/images/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/src/common/components/n22-nation/assets/images/down.png -------------------------------------------------------------------------------- /src/common/components/n22-nation/assets/lib/addressUtils.js: -------------------------------------------------------------------------------- 1 | import addressData from '../data/districts' 2 | // 获取省市区对应的中文 3 | const addressUtils = { 4 | // 通过地址code获取中文 5 | getAddressOfCn: function (key = '0') { 6 | let returnValue = null 7 | outer: for (let i in addressData) { 8 | if (typeof addressData[i] == 'object') { 9 | for (let j in addressData[i]) { 10 | if (j == key) { 11 | returnValue = addressData[i][j] 12 | break outer 13 | } 14 | } 15 | } else if (i == key) { 16 | returnValue = addressData[i] 17 | break outer 18 | } 19 | } 20 | return returnValue 21 | } 22 | } 23 | 24 | export default addressUtils 25 | -------------------------------------------------------------------------------- /src/common/components/n22-nation/index.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author: jdf 3 | * @Date: 2018-01-06 21:11:10 4 | * @Last Modified by: jdf 5 | * @Last Modified time: 2018-04-17 09:46:58 6 | * @desc 滑动删除组件 7 | * main 主列表 8 | * right 右侧滑出按钮列表 9 | */ 10 | import N22Nation from './n22-nation' 11 | export default N22Nation 12 | -------------------------------------------------------------------------------- /src/common/components/n22-page/index.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author: jdf 3 | * @Date: 2018-01-06 21:11:10 4 | * @Last Modified by: jdf 5 | * @Last Modified time: 2018-01-12 17:12:43 6 | * @desc 页面布局组件,用于后期扩展键盘事件,滚动事件等 7 | */ 8 | import N22Page from './n22-page' 9 | export default N22Page 10 | -------------------------------------------------------------------------------- /src/common/components/n22-picker/assets/images/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/src/common/components/n22-picker/assets/images/down.png -------------------------------------------------------------------------------- /src/common/components/n22-picker/index.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author: jdf 3 | * @Date: 2018-01-06 21:10:40 4 | * @Last Modified by: jdf 5 | * @Last Modified time: 2018-04-14 17:36:20 6 | */ 7 | 8 | import N22Picker from './n22-picker' 9 | export default N22Picker 10 | -------------------------------------------------------------------------------- /src/common/components/n22-scroll-y/index.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author: jdf 3 | * @Date: 2018-01-06 21:13:55 4 | * @Last Modified by: jdf 5 | * @Last Modified time: 2018-01-15 16:26:47 6 | * @desc 双指缩放组件 7 | */ 8 | 9 | import N22ScrollY from './n22-scroll-y' 10 | export default N22ScrollY 11 | -------------------------------------------------------------------------------- /src/common/components/n22-sign/assets/document/信手书手写签名控件MiniCore_HTML5版使用文档.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/src/common/components/n22-sign/assets/document/信手书手写签名控件MiniCore_HTML5版使用文档.pdf -------------------------------------------------------------------------------- /src/common/components/n22-sign/assets/src/css/mw480Portrait.css: -------------------------------------------------------------------------------- 1 | #anysign_title { 2 | font-size : 20pt; 3 | margin: 0 0 0 0; 4 | vertical-align: middle; 5 | text-align: center; 6 | display: table-cell; 7 | } 8 | 9 | #btnOK { 10 | font-size : 10pt; 11 | } 12 | 13 | #btnClear { 14 | font-size : 10pt; 15 | } 16 | 17 | #btnCancel { 18 | font-size : 10pt; 19 | } 20 | 21 | #btnContainerOuter 22 | { 23 | margin: 0 0 0 0; 24 | text-align: center; 25 | vertical-align: middle; 26 | display: table-cell; 27 | } 28 | 29 | #btnContainerInner 30 | { 31 | } 32 | 33 | #container { 34 | border: 1px solid gray; 35 | height: 70%; 36 | width: 99%; 37 | position: relative; 38 | } 39 | 40 | #dialog { 41 | 42 | /*border:1px solid rgba(0,0,0, 0.4);*/ 43 | border-radius:2px; 44 | } -------------------------------------------------------------------------------- /src/common/components/n22-sign/assets/src/css/sw1024.css: -------------------------------------------------------------------------------- 1 | 2 | #anysign_title { 3 | font-size : 30pt; 4 | margin: 0 0 0 0; 5 | vertical-align: middle; 6 | text-align: center; 7 | display: table-cell; 8 | } 9 | 10 | #btnOK { 11 | font-size : 25pt; 12 | } 13 | 14 | #btnClear { 15 | font-size : 25pt; 16 | } 17 | 18 | #btnCancel { 19 | font-size : 25pt; 20 | } 21 | 22 | #btnContainerOuter 23 | { 24 | margin: 0 0 0 0; 25 | text-align: center; 26 | vertical-align: middle; 27 | display: table-cell; 28 | } 29 | 30 | #btnContainerInner 31 | { 32 | } 33 | 34 | #container { 35 | border: 2px solid gray; 36 | height: 70%; 37 | width: 99%; 38 | position: relative; 39 | } 40 | 41 | #dialog { 42 | 43 | /*border:2px solid rgba(0,0,0, 0.4);*/ 44 | border-radius:2px; 45 | } -------------------------------------------------------------------------------- /src/common/components/n22-sign/index.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author: jdf 3 | * @Date: 2018-01-06 21:13:55 4 | * @Last Modified by: jdf 5 | * @Last Modified time: 2018-03-09 14:01:20 6 | * @desc 双指缩放组件 7 | */ 8 | 9 | import N22Sign from './n22-sign' 10 | export default N22Sign 11 | -------------------------------------------------------------------------------- /src/common/components/n22-switch/assets/images/female.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/src/common/components/n22-switch/assets/images/female.png -------------------------------------------------------------------------------- /src/common/components/n22-switch/assets/images/male.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/src/common/components/n22-switch/assets/images/male.png -------------------------------------------------------------------------------- /src/common/components/n22-switch/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @author jdf 3 | * @name 性别组件 4 | * @param label 左侧文字显示 5 | * @param need 填入必填项的值 6 | * @desc For example: 7 | * 8 | * 9 | * 10 | */ 11 | import N22Switch from './n22-switch' 12 | export default N22Switch 13 | -------------------------------------------------------------------------------- /src/common/components/n22-tab/index.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author: jdf 3 | * @Date: 2018-01-06 21:10:40 4 | * @Last Modified by: jdf 5 | * @Last Modified time: 2018-01-12 17:12:53 6 | */ 7 | 8 | import N22Tab from './n22-tab' 9 | export default N22Tab 10 | -------------------------------------------------------------------------------- /src/common/components/n22-touch/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @author jdf 3 | * @name 日历组件 4 | */ 5 | import N22Touch from './n22-touch' 6 | export default N22Touch 7 | -------------------------------------------------------------------------------- /src/common/components/n22-video/assets/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/src/common/components/n22-video/assets/play.png -------------------------------------------------------------------------------- /src/common/components/n22-video/index.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author: jdf 3 | * @Date: 2018-01-06 21:13:55 4 | * @Last Modified by: jdf 5 | * @Last Modified time: 2018-02-25 20:55:18 6 | * @desc 双指缩放组件 7 | */ 8 | 9 | import N22Video from './n22-video' 10 | export default N22Video 11 | -------------------------------------------------------------------------------- /src/common/components/n22-zoom/index.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author: jdf 3 | * @Date: 2018-01-06 21:13:55 4 | * @Last Modified by: jdf 5 | * @Last Modified time: 2018-01-12 17:12:57 6 | * @desc 双指缩放组件 7 | */ 8 | 9 | import N22Zoom from './n22-zoom' 10 | export default N22Zoom 11 | -------------------------------------------------------------------------------- /src/common/directives/README.md: -------------------------------------------------------------------------------- 1 | ## 存放公共指令 2 | -------------------------------------------------------------------------------- /src/handlers/README.md: -------------------------------------------------------------------------------- 1 | ## 存放模块共用方法处理类 2 | commonHandler 存放公共事物处理方法 仅仅存放业务逻辑的处理方法 比如 登出,获取用户信息 3 | 4 | -------------------------------------------------------------------------------- /src/handlers/commonHandler.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author: jdf 3 | * @Date: 2018-05-06 19:13:25 4 | * @Last Modified by: jdf 5 | * @Last Modified time: 2018-05-08 16:41:20 6 | */ 7 | import router from './../routers' 8 | import store from './../vuex/store.js' 9 | const commonHandler = { 10 | /** 11 | * @name 退出登录的方法 12 | */ 13 | loginOut () { 14 | window.utils.ui.dialog('确定退出?').then(e => { 15 | // 清除用户信息 16 | window.utils.cache.removeItem('user') 17 | // 清除token 18 | window.utils.cache.removeItem('token') 19 | // 清除极光推送的别名 20 | window.utils.native.setAlias('') 21 | // 调用退出登录接口 22 | router.push({name: 'login'}) 23 | }) 24 | }, 25 | /** 26 | * @name 版本管理接口 27 | */ 28 | checkVersion (callback = () => {}) { 29 | }, 30 | /** 31 | * @name 获取个人信息接口 32 | * personInfo 33 | */ 34 | getUserInfo (callback = () => {}) { 35 | } 36 | } 37 | export default commonHandler 38 | -------------------------------------------------------------------------------- /src/pages/demo/Demo.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 22 | 23 | 26 | -------------------------------------------------------------------------------- /src/pages/demo/N22ScrollTemp.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 28 | 33 | -------------------------------------------------------------------------------- /src/pages/demo/N22Sign.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 28 | 32 | -------------------------------------------------------------------------------- /src/pages/demo/README.md: -------------------------------------------------------------------------------- 1 | attence 考勤打卡模块 2 | home 首页 3 | login 登陆模块 4 | train 培训入职模块 5 | demo 实例模块 6 | center 个人中心 7 | notice 消息中心 8 | -------------------------------------------------------------------------------- /src/pages/demo/commponts/README.md: -------------------------------------------------------------------------------- 1 | ## 存放模块私有组件 2 | -------------------------------------------------------------------------------- /src/pages/demo/commponts/n22-render.js: -------------------------------------------------------------------------------- 1 | // .vue 文件只不过是在编译的时候将template编译成render而已 2 | export default { 3 | name: 'n22-btn', 4 | 5 | mixins: [ 6 | ], 7 | 8 | props: { 9 | title: { 10 | type: String, 11 | default: '我是标题' 12 | } 13 | }, 14 | 15 | computed: { 16 | classes () { 17 | return 'btn' 18 | } 19 | }, 20 | methods: { 21 | }, 22 | 23 | mounted () { 24 | }, 25 | 26 | beforeDestroy () { 27 | }, 28 | 29 | render (createElement) { 30 | return createElement('div', { 31 | class: this.classes, 32 | style: 'height:100px;background:red', 33 | on: { 34 | click () { 35 | console.log('click') 36 | }, 37 | touchstart () { 38 | console.log('touchStart') 39 | } 40 | } 41 | }, [this.$slots.title, '先来一些文字', createElement('h2', {class: 'title'}, '标题')]) 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /src/pages/demo/directives/README.md: -------------------------------------------------------------------------------- 1 | ## 存放模块私有指令 2 | -------------------------------------------------------------------------------- /src/utils/index.js: -------------------------------------------------------------------------------- 1 | import './ext' 2 | // 引入框架公有工具类方法 3 | import { Toast } from 'mint-ui' 4 | // Indicator, 5 | // MessageBox, 6 | // 引入自定义工具类 7 | import cache from './cache' 8 | import format from './format' 9 | import validator from './validator' 10 | import ui from './ui' 11 | import native from './native' 12 | import http from './http' 13 | import wechat from './wechat' 14 | 15 | // 引入接口配置类 16 | import htag from './../assets/interface/interface' 17 | 18 | /** 19 | * cache 缓存数据 20 | * format 日期格式化 21 | * validator 输入数据验证 22 | * native 和原生的cordova方法进行交互 23 | * ui 页面公共弹出框 eg: 确定 24 | * http 后台请求交互 25 | * htag 配置后台接口配置参数 26 | */ 27 | const utils = { 28 | Toast, 29 | cache, 30 | format, 31 | validator, 32 | native, 33 | ui, 34 | http, 35 | wechat, 36 | htag 37 | } 38 | 39 | export default utils 40 | -------------------------------------------------------------------------------- /src/vuex/store.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue' 2 | import Vuex from 'vuex' 3 | import common from './modules/common' 4 | 5 | Vue.use(Vuex) 6 | 7 | export default new Vuex.Store({ 8 | modules: { 9 | common: common 10 | } 11 | }) 12 | -------------------------------------------------------------------------------- /static/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/.gitkeep -------------------------------------------------------------------------------- /static/font-awesome/HELP-US-OUT.txt: -------------------------------------------------------------------------------- 1 | I hope you love Font Awesome. If you've found it useful, please do me a favor and check out my latest project, 2 | Fort Awesome (https://fortawesome.com). It makes it easy to put the perfect icons on your website. Choose from our awesome, 3 | comprehensive icon sets or copy and paste your own. 4 | 5 | Please. Check it out. 6 | 7 | -Dave Gandy 8 | -------------------------------------------------------------------------------- /static/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /static/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /static/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /static/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /static/font-awesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/font-awesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /static/font-awesome/less/animated.less: -------------------------------------------------------------------------------- 1 | // Animated Icons 2 | // -------------------------- 3 | 4 | .@{fa-css-prefix}-spin { 5 | -webkit-animation: fa-spin 2s infinite linear; 6 | animation: fa-spin 2s infinite linear; 7 | } 8 | 9 | .@{fa-css-prefix}-pulse { 10 | -webkit-animation: fa-spin 1s infinite steps(8); 11 | animation: fa-spin 1s infinite steps(8); 12 | } 13 | 14 | @-webkit-keyframes fa-spin { 15 | 0% { 16 | -webkit-transform: rotate(0deg); 17 | transform: rotate(0deg); 18 | } 19 | 100% { 20 | -webkit-transform: rotate(359deg); 21 | transform: rotate(359deg); 22 | } 23 | } 24 | 25 | @keyframes fa-spin { 26 | 0% { 27 | -webkit-transform: rotate(0deg); 28 | transform: rotate(0deg); 29 | } 30 | 100% { 31 | -webkit-transform: rotate(359deg); 32 | transform: rotate(359deg); 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /static/font-awesome/less/bordered-pulled.less: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em @fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .@{fa-css-prefix}-pull-left { float: left; } 11 | .@{fa-css-prefix}-pull-right { float: right; } 12 | 13 | .@{fa-css-prefix} { 14 | &.@{fa-css-prefix}-pull-left { margin-right: .3em; } 15 | &.@{fa-css-prefix}-pull-right { margin-left: .3em; } 16 | } 17 | 18 | /* Deprecated as of 4.4.0 */ 19 | .pull-right { float: right; } 20 | .pull-left { float: left; } 21 | 22 | .@{fa-css-prefix} { 23 | &.pull-left { margin-right: .3em; } 24 | &.pull-right { margin-left: .3em; } 25 | } 26 | -------------------------------------------------------------------------------- /static/font-awesome/less/core.less: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix} { 5 | display: inline-block; 6 | font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | 12 | } 13 | -------------------------------------------------------------------------------- /static/font-awesome/less/fixed-width.less: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .@{fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /static/font-awesome/less/font-awesome.less: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables.less"; 7 | @import "mixins.less"; 8 | @import "path.less"; 9 | @import "core.less"; 10 | @import "larger.less"; 11 | @import "fixed-width.less"; 12 | @import "list.less"; 13 | @import "bordered-pulled.less"; 14 | @import "animated.less"; 15 | @import "rotated-flipped.less"; 16 | @import "stacked.less"; 17 | @import "icons.less"; 18 | @import "screen-reader.less"; 19 | -------------------------------------------------------------------------------- /static/font-awesome/less/larger.less: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .@{fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .@{fa-css-prefix}-2x { font-size: 2em; } 11 | .@{fa-css-prefix}-3x { font-size: 3em; } 12 | .@{fa-css-prefix}-4x { font-size: 4em; } 13 | .@{fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /static/font-awesome/less/list.less: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: @fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .@{fa-css-prefix}-li { 11 | position: absolute; 12 | left: -@fa-li-width; 13 | width: @fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.@{fa-css-prefix}-lg { 17 | left: (-@fa-li-width + (4em / 14)); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /static/font-awesome/less/path.less: -------------------------------------------------------------------------------- 1 | /* FONT PATH 2 | * -------------------------- */ 3 | 4 | @font-face { 5 | font-family: 'FontAwesome'; 6 | src: url('@{fa-font-path}/fontawesome-webfont.eot?v=@{fa-version}'); 7 | src: url('@{fa-font-path}/fontawesome-webfont.eot?#iefix&v=@{fa-version}') format('embedded-opentype'), 8 | url('@{fa-font-path}/fontawesome-webfont.woff2?v=@{fa-version}') format('woff2'), 9 | url('@{fa-font-path}/fontawesome-webfont.woff?v=@{fa-version}') format('woff'), 10 | url('@{fa-font-path}/fontawesome-webfont.ttf?v=@{fa-version}') format('truetype'), 11 | url('@{fa-font-path}/fontawesome-webfont.svg?v=@{fa-version}#fontawesomeregular') format('svg'); 12 | // src: url('@{fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts 13 | font-weight: normal; 14 | font-style: normal; 15 | } 16 | -------------------------------------------------------------------------------- /static/font-awesome/less/rotated-flipped.less: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-rotate-90 { .fa-icon-rotate(90deg, 1); } 5 | .@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); } 6 | .@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); } 7 | 8 | .@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); } 9 | .@{fa-css-prefix}-flip-vertical { .fa-icon-flip(1, -1, 2); } 10 | 11 | // Hook for IE8-9 12 | // ------------------------- 13 | 14 | :root .@{fa-css-prefix}-rotate-90, 15 | :root .@{fa-css-prefix}-rotate-180, 16 | :root .@{fa-css-prefix}-rotate-270, 17 | :root .@{fa-css-prefix}-flip-horizontal, 18 | :root .@{fa-css-prefix}-flip-vertical { 19 | filter: none; 20 | } 21 | -------------------------------------------------------------------------------- /static/font-awesome/less/screen-reader.less: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { .sr-only(); } 5 | .sr-only-focusable { .sr-only-focusable(); } 6 | -------------------------------------------------------------------------------- /static/font-awesome/less/stacked.less: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .@{fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .@{fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .@{fa-css-prefix}-inverse { color: @fa-inverse; } 21 | -------------------------------------------------------------------------------- /static/font-awesome/scss/_animated.scss: -------------------------------------------------------------------------------- 1 | // Spinning Icons 2 | // -------------------------- 3 | 4 | .#{$fa-css-prefix}-spin { 5 | -webkit-animation: fa-spin 2s infinite linear; 6 | animation: fa-spin 2s infinite linear; 7 | } 8 | 9 | .#{$fa-css-prefix}-pulse { 10 | -webkit-animation: fa-spin 1s infinite steps(8); 11 | animation: fa-spin 1s infinite steps(8); 12 | } 13 | 14 | @-webkit-keyframes fa-spin { 15 | 0% { 16 | -webkit-transform: rotate(0deg); 17 | transform: rotate(0deg); 18 | } 19 | 100% { 20 | -webkit-transform: rotate(359deg); 21 | transform: rotate(359deg); 22 | } 23 | } 24 | 25 | @keyframes fa-spin { 26 | 0% { 27 | -webkit-transform: rotate(0deg); 28 | transform: rotate(0deg); 29 | } 30 | 100% { 31 | -webkit-transform: rotate(359deg); 32 | transform: rotate(359deg); 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /static/font-awesome/scss/_bordered-pulled.scss: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em $fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .#{$fa-css-prefix}-pull-left { float: left; } 11 | .#{$fa-css-prefix}-pull-right { float: right; } 12 | 13 | .#{$fa-css-prefix} { 14 | &.#{$fa-css-prefix}-pull-left { margin-right: .3em; } 15 | &.#{$fa-css-prefix}-pull-right { margin-left: .3em; } 16 | } 17 | 18 | /* Deprecated as of 4.4.0 */ 19 | .pull-right { float: right; } 20 | .pull-left { float: left; } 21 | 22 | .#{$fa-css-prefix} { 23 | &.pull-left { margin-right: .3em; } 24 | &.pull-right { margin-left: .3em; } 25 | } 26 | -------------------------------------------------------------------------------- /static/font-awesome/scss/_core.scss: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix} { 5 | display: inline-block; 6 | font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | 12 | } 13 | -------------------------------------------------------------------------------- /static/font-awesome/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /static/font-awesome/scss/_larger.scss: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .#{$fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .#{$fa-css-prefix}-2x { font-size: 2em; } 11 | .#{$fa-css-prefix}-3x { font-size: 3em; } 12 | .#{$fa-css-prefix}-4x { font-size: 4em; } 13 | .#{$fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /static/font-awesome/scss/_list.scss: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: $fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .#{$fa-css-prefix}-li { 11 | position: absolute; 12 | left: -$fa-li-width; 13 | width: $fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.#{$fa-css-prefix}-lg { 17 | left: -$fa-li-width + (4em / 14); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /static/font-awesome/scss/_path.scss: -------------------------------------------------------------------------------- 1 | /* FONT PATH 2 | * -------------------------- */ 3 | 4 | @font-face { 5 | font-family: 'FontAwesome'; 6 | src: url('#{$fa-font-path}/fontawesome-webfont.eot?v=#{$fa-version}'); 7 | src: url('#{$fa-font-path}/fontawesome-webfont.eot?#iefix&v=#{$fa-version}') format('embedded-opentype'), 8 | url('#{$fa-font-path}/fontawesome-webfont.woff2?v=#{$fa-version}') format('woff2'), 9 | url('#{$fa-font-path}/fontawesome-webfont.woff?v=#{$fa-version}') format('woff'), 10 | url('#{$fa-font-path}/fontawesome-webfont.ttf?v=#{$fa-version}') format('truetype'), 11 | url('#{$fa-font-path}/fontawesome-webfont.svg?v=#{$fa-version}#fontawesomeregular') format('svg'); 12 | // src: url('#{$fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts 13 | font-weight: normal; 14 | font-style: normal; 15 | } 16 | -------------------------------------------------------------------------------- /static/font-awesome/scss/_rotated-flipped.scss: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); } 5 | .#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); } 6 | .#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); } 7 | 8 | .#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); } 9 | .#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); } 10 | 11 | // Hook for IE8-9 12 | // ------------------------- 13 | 14 | :root .#{$fa-css-prefix}-rotate-90, 15 | :root .#{$fa-css-prefix}-rotate-180, 16 | :root .#{$fa-css-prefix}-rotate-270, 17 | :root .#{$fa-css-prefix}-flip-horizontal, 18 | :root .#{$fa-css-prefix}-flip-vertical { 19 | filter: none; 20 | } 21 | -------------------------------------------------------------------------------- /static/font-awesome/scss/_screen-reader.scss: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { @include sr-only(); } 5 | .sr-only-focusable { @include sr-only-focusable(); } 6 | -------------------------------------------------------------------------------- /static/font-awesome/scss/_stacked.scss: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .#{$fa-css-prefix}-stack-1x, .#{$fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .#{$fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .#{$fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .#{$fa-css-prefix}-inverse { color: $fa-inverse; } 21 | -------------------------------------------------------------------------------- /static/font-awesome/scss/font-awesome.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables"; 7 | @import "mixins"; 8 | @import "path"; 9 | @import "core"; 10 | @import "larger"; 11 | @import "fixed-width"; 12 | @import "list"; 13 | @import "bordered-pulled"; 14 | @import "animated"; 15 | @import "rotated-flipped"; 16 | @import "stacked"; 17 | @import "icons"; 18 | @import "screen-reader"; 19 | -------------------------------------------------------------------------------- /static/html/map.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 地图展示 8 | 9 | 10 |
11 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /static/images/baiping.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/baiping.gif -------------------------------------------------------------------------------- /static/images/footer/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/footer/home.png -------------------------------------------------------------------------------- /static/images/footer/home_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/footer/home_active.png -------------------------------------------------------------------------------- /static/images/footer/jour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/footer/jour.png -------------------------------------------------------------------------------- /static/images/footer/jour_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/footer/jour_active.png -------------------------------------------------------------------------------- /static/images/footer/pro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/footer/pro.png -------------------------------------------------------------------------------- /static/images/footer/pro_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/footer/pro_active.png -------------------------------------------------------------------------------- /static/images/footer/proposal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/footer/proposal.png -------------------------------------------------------------------------------- /static/images/footer/proposal_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/footer/proposal_active.png -------------------------------------------------------------------------------- /static/images/icon/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/icon/1.png -------------------------------------------------------------------------------- /static/images/icon/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/icon/2.png -------------------------------------------------------------------------------- /static/images/icon/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/icon/3.png -------------------------------------------------------------------------------- /static/images/icon/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/icon/4.png -------------------------------------------------------------------------------- /static/images/icon/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/icon/5.png -------------------------------------------------------------------------------- /static/images/icon/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/icon/6.png -------------------------------------------------------------------------------- /static/images/icon/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/icon/7.png -------------------------------------------------------------------------------- /static/images/icon/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/icon/8.png -------------------------------------------------------------------------------- /static/images/icon/eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/icon/eye.png -------------------------------------------------------------------------------- /static/images/icon/eye_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/icon/eye_active.png -------------------------------------------------------------------------------- /static/images/plants/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/1.png -------------------------------------------------------------------------------- /static/images/plants/UI切图/场景/游戏背景-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/UI切图/场景/游戏背景-1.jpg -------------------------------------------------------------------------------- /static/images/plants/UI切图/场景/游戏背景-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/UI切图/场景/游戏背景-2.jpg -------------------------------------------------------------------------------- /static/images/plants/UI切图/时间 分数板/images/分数.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/UI切图/时间 分数板/images/分数.png -------------------------------------------------------------------------------- /static/images/plants/UI切图/时间 分数板/images/时间.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/UI切图/时间 分数板/images/时间.jpg -------------------------------------------------------------------------------- /static/images/plants/UI切图/种子-1/images/种子1_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/UI切图/种子-1/images/种子1_03.jpg -------------------------------------------------------------------------------- /static/images/plants/UI切图/种子-1/images/种子1_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/UI切图/种子-1/images/种子1_07.png -------------------------------------------------------------------------------- /static/images/plants/UI切图/种子-1/images/种子1_10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/UI切图/种子-1/images/种子1_10.jpg -------------------------------------------------------------------------------- /static/images/plants/UI切图/种子-1/images/种子1_13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/UI切图/种子-1/images/种子1_13.jpg -------------------------------------------------------------------------------- /static/images/plants/UI切图/种子-2/images/种子2_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/UI切图/种子-2/images/种子2_03.jpg -------------------------------------------------------------------------------- /static/images/plants/UI切图/种子-2/images/种子2_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/UI切图/种子-2/images/种子2_06.png -------------------------------------------------------------------------------- /static/images/plants/UI切图/种子-2/images/种子2_09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/UI切图/种子-2/images/种子2_09.jpg -------------------------------------------------------------------------------- /static/images/plants/UI切图/种子-2/images/种子2_12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/UI切图/种子-2/images/种子2_12.jpg -------------------------------------------------------------------------------- /static/images/plants/UI切图/种子-3/images/种子-3_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/UI切图/种子-3/images/种子-3_03.jpg -------------------------------------------------------------------------------- /static/images/plants/UI切图/种子-3/images/种子-3_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/UI切图/种子-3/images/种子-3_07.png -------------------------------------------------------------------------------- /static/images/plants/UI切图/种子-3/images/种子-3_10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/UI切图/种子-3/images/种子-3_10.jpg -------------------------------------------------------------------------------- /static/images/plants/UI切图/种子-3/images/种子-3_13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/UI切图/种子-3/images/种子-3_13.jpg -------------------------------------------------------------------------------- /static/images/plants/UI切图/蓄力/images/蓄力槽_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/UI切图/蓄力/images/蓄力槽_02.jpg -------------------------------------------------------------------------------- /static/images/plants/UI切图/蓄力/images/蓄力槽_05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/UI切图/蓄力/images/蓄力槽_05.jpg -------------------------------------------------------------------------------- /static/images/plants/UI切图/蓄力/images/蓄力槽_07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/UI切图/蓄力/images/蓄力槽_07.jpg -------------------------------------------------------------------------------- /static/images/plants/UI切图/蓄力/images/蓄力槽_08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/UI切图/蓄力/images/蓄力槽_08.jpg -------------------------------------------------------------------------------- /static/images/plants/UI切图/蓄力/images/蓄力槽_11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/UI切图/蓄力/images/蓄力槽_11.jpg -------------------------------------------------------------------------------- /static/images/plants/UI切图/蓄力/images/蓄力槽_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/UI切图/蓄力/images/蓄力槽_13.png -------------------------------------------------------------------------------- /static/images/plants/UI切图/蓄力指引/images/指引_06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/UI切图/蓄力指引/images/指引_06.jpg -------------------------------------------------------------------------------- /static/images/plants/UI切图/蓄力指引/images/指引_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/UI切图/蓄力指引/images/指引_10.png -------------------------------------------------------------------------------- /static/images/plants/UI切图/蓄力指引/images/指引_15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/UI切图/蓄力指引/images/指引_15.jpg -------------------------------------------------------------------------------- /static/images/plants/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/bg.jpg -------------------------------------------------------------------------------- /static/images/plants/dust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/dust.png -------------------------------------------------------------------------------- /static/images/plants/idle/idle_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/idle/idle_00.png -------------------------------------------------------------------------------- /static/images/plants/idle/idle_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/idle/idle_01.png -------------------------------------------------------------------------------- /static/images/plants/idle/idle_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/idle/idle_02.png -------------------------------------------------------------------------------- /static/images/plants/idle/idle_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/idle/idle_03.png -------------------------------------------------------------------------------- /static/images/plants/idle/idle_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/idle/idle_04.png -------------------------------------------------------------------------------- /static/images/plants/idle/idle_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/idle/idle_05.png -------------------------------------------------------------------------------- /static/images/plants/idle/idle_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/idle/idle_06.png -------------------------------------------------------------------------------- /static/images/plants/idle/idle_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/idle/idle_07.png -------------------------------------------------------------------------------- /static/images/plants/idle/idle_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/idle/idle_08.png -------------------------------------------------------------------------------- /static/images/plants/idle/idle_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/idle/idle_09.png -------------------------------------------------------------------------------- /static/images/plants/idle/idle_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/idle/idle_10.png -------------------------------------------------------------------------------- /static/images/plants/idle/idle_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/idle/idle_11.png -------------------------------------------------------------------------------- /static/images/plants/idle/idle_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/idle/idle_12.png -------------------------------------------------------------------------------- /static/images/plants/idle/idle_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/idle/idle_13.png -------------------------------------------------------------------------------- /static/images/plants/idle/idle_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/idle/idle_14.png -------------------------------------------------------------------------------- /static/images/plants/idle/idle_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/idle/idle_15.png -------------------------------------------------------------------------------- /static/images/plants/idle/idle_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/idle/idle_16.png -------------------------------------------------------------------------------- /static/images/plants/idle/idle_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/idle/idle_17.png -------------------------------------------------------------------------------- /static/images/plants/loadding/loadding_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/loadding/loadding_06.png -------------------------------------------------------------------------------- /static/images/plants/loadding/loadding_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/loadding/loadding_1.png -------------------------------------------------------------------------------- /static/images/plants/loadding/loadding_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/loadding/loadding_17.png -------------------------------------------------------------------------------- /static/images/plants/loadding/loadding_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/loadding/loadding_2.png -------------------------------------------------------------------------------- /static/images/plants/loadding/loadding_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/loadding/loadding_3.png -------------------------------------------------------------------------------- /static/images/plants/loadding_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/loadding_bg.jpg -------------------------------------------------------------------------------- /static/images/plants/plant_01/plant_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/plant_01/plant_01.jpg -------------------------------------------------------------------------------- /static/images/plants/plant_01/plant_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/plant_01/plant_01.png -------------------------------------------------------------------------------- /static/images/plants/plant_01/plant_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/plant_01/plant_02.jpg -------------------------------------------------------------------------------- /static/images/plants/plant_01/plant_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/plant_01/plant_02.png -------------------------------------------------------------------------------- /static/images/plants/plant_01/plant_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/plant_01/plant_03.jpg -------------------------------------------------------------------------------- /static/images/plants/plant_01/plant_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/plant_01/plant_03.png -------------------------------------------------------------------------------- /static/images/plants/plant_01/plant_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/plant_01/plant_04.png -------------------------------------------------------------------------------- /static/images/plants/score.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/score.png -------------------------------------------------------------------------------- /static/images/plants/sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/sun.png -------------------------------------------------------------------------------- /static/images/plants/time.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/time.jpg -------------------------------------------------------------------------------- /static/images/plants/time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/time.png -------------------------------------------------------------------------------- /static/images/plants/timeOver/time_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/timeOver/time_1.png -------------------------------------------------------------------------------- /static/images/plants/timeOver/time_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/timeOver/time_2.png -------------------------------------------------------------------------------- /static/images/plants/timeOver/time_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/timeOver/time_3.png -------------------------------------------------------------------------------- /static/images/plants/zombies/attack/attack_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/attack/attack_00.png -------------------------------------------------------------------------------- /static/images/plants/zombies/attack/attack_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/attack/attack_01.png -------------------------------------------------------------------------------- /static/images/plants/zombies/attack/attack_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/attack/attack_02.png -------------------------------------------------------------------------------- /static/images/plants/zombies/attack/attack_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/attack/attack_03.png -------------------------------------------------------------------------------- /static/images/plants/zombies/attack/attack_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/attack/attack_04.png -------------------------------------------------------------------------------- /static/images/plants/zombies/attack/attack_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/attack/attack_05.png -------------------------------------------------------------------------------- /static/images/plants/zombies/attack/attack_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/attack/attack_06.png -------------------------------------------------------------------------------- /static/images/plants/zombies/attack/attack_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/attack/attack_07.png -------------------------------------------------------------------------------- /static/images/plants/zombies/attack/attack_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/attack/attack_08.png -------------------------------------------------------------------------------- /static/images/plants/zombies/attack/attack_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/attack/attack_09.png -------------------------------------------------------------------------------- /static/images/plants/zombies/attack/attack_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/attack/attack_10.png -------------------------------------------------------------------------------- /static/images/plants/zombies/attack/attack_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/attack/attack_11.png -------------------------------------------------------------------------------- /static/images/plants/zombies/attack/attack_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/attack/attack_12.png -------------------------------------------------------------------------------- /static/images/plants/zombies/attack/attack_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/attack/attack_13.png -------------------------------------------------------------------------------- /static/images/plants/zombies/attack/attack_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/attack/attack_14.png -------------------------------------------------------------------------------- /static/images/plants/zombies/attack/attack_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/attack/attack_15.png -------------------------------------------------------------------------------- /static/images/plants/zombies/attack/attack_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/attack/attack_16.png -------------------------------------------------------------------------------- /static/images/plants/zombies/attack/attack_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/attack/attack_17.png -------------------------------------------------------------------------------- /static/images/plants/zombies/attack/attack_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/attack/attack_18.png -------------------------------------------------------------------------------- /static/images/plants/zombies/attack/attack_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/attack/attack_19.png -------------------------------------------------------------------------------- /static/images/plants/zombies/attack/attack_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/attack/attack_20.png -------------------------------------------------------------------------------- /static/images/plants/zombies/die/die_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/die/die_00.png -------------------------------------------------------------------------------- /static/images/plants/zombies/die/die_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/die/die_01.png -------------------------------------------------------------------------------- /static/images/plants/zombies/die/die_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/die/die_02.png -------------------------------------------------------------------------------- /static/images/plants/zombies/die/die_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/die/die_03.png -------------------------------------------------------------------------------- /static/images/plants/zombies/die/die_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/die/die_04.png -------------------------------------------------------------------------------- /static/images/plants/zombies/die/die_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/die/die_05.png -------------------------------------------------------------------------------- /static/images/plants/zombies/die/die_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/die/die_06.png -------------------------------------------------------------------------------- /static/images/plants/zombies/die/die_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/die/die_07.png -------------------------------------------------------------------------------- /static/images/plants/zombies/die/die_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/die/die_08.png -------------------------------------------------------------------------------- /static/images/plants/zombies/die/die_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/die/die_09.png -------------------------------------------------------------------------------- /static/images/plants/zombies/dieboom/dieboom_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/dieboom/dieboom_00.png -------------------------------------------------------------------------------- /static/images/plants/zombies/dieboom/dieboom_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/dieboom/dieboom_01.png -------------------------------------------------------------------------------- /static/images/plants/zombies/dieboom/dieboom_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/dieboom/dieboom_02.png -------------------------------------------------------------------------------- /static/images/plants/zombies/dieboom/dieboom_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/dieboom/dieboom_03.png -------------------------------------------------------------------------------- /static/images/plants/zombies/dieboom/dieboom_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/dieboom/dieboom_04.png -------------------------------------------------------------------------------- /static/images/plants/zombies/dieboom/dieboom_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/dieboom/dieboom_05.png -------------------------------------------------------------------------------- /static/images/plants/zombies/dieboom/dieboom_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/dieboom/dieboom_06.png -------------------------------------------------------------------------------- /static/images/plants/zombies/dieboom/dieboom_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/dieboom/dieboom_07.png -------------------------------------------------------------------------------- /static/images/plants/zombies/dieboom/dieboom_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/dieboom/dieboom_08.png -------------------------------------------------------------------------------- /static/images/plants/zombies/dieboom/dieboom_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/dieboom/dieboom_09.png -------------------------------------------------------------------------------- /static/images/plants/zombies/dieboom/dieboom_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/dieboom/dieboom_10.png -------------------------------------------------------------------------------- /static/images/plants/zombies/dieboom/dieboom_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/dieboom/dieboom_11.png -------------------------------------------------------------------------------- /static/images/plants/zombies/dieboom/dieboom_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/dieboom/dieboom_12.png -------------------------------------------------------------------------------- /static/images/plants/zombies/dieboom/dieboom_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/dieboom/dieboom_13.png -------------------------------------------------------------------------------- /static/images/plants/zombies/dieboom/dieboom_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/dieboom/dieboom_14.png -------------------------------------------------------------------------------- /static/images/plants/zombies/dieboom/dieboom_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/dieboom/dieboom_15.png -------------------------------------------------------------------------------- /static/images/plants/zombies/dieboom/dieboom_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/dieboom/dieboom_16.png -------------------------------------------------------------------------------- /static/images/plants/zombies/dieboom/dieboom_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/dieboom/dieboom_17.png -------------------------------------------------------------------------------- /static/images/plants/zombies/dieboom/dieboom_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/dieboom/dieboom_18.png -------------------------------------------------------------------------------- /static/images/plants/zombies/dieboom/dieboom_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/dieboom/dieboom_19.png -------------------------------------------------------------------------------- /static/images/plants/zombies/dying/body/body_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/dying/body/body_00.png -------------------------------------------------------------------------------- /static/images/plants/zombies/dying/body/body_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/dying/body/body_01.png -------------------------------------------------------------------------------- /static/images/plants/zombies/dying/body/body_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/dying/body/body_02.png -------------------------------------------------------------------------------- /static/images/plants/zombies/dying/body/body_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/dying/body/body_03.png -------------------------------------------------------------------------------- /static/images/plants/zombies/dying/body/body_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/dying/body/body_04.png -------------------------------------------------------------------------------- /static/images/plants/zombies/dying/body/body_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/dying/body/body_05.png -------------------------------------------------------------------------------- /static/images/plants/zombies/dying/body/body_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/dying/body/body_06.png -------------------------------------------------------------------------------- /static/images/plants/zombies/dying/body/body_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/dying/body/body_07.png -------------------------------------------------------------------------------- /static/images/plants/zombies/dying/body/body_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/dying/body/body_08.png -------------------------------------------------------------------------------- /static/images/plants/zombies/dying/body/body_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/dying/body/body_09.png -------------------------------------------------------------------------------- /static/images/plants/zombies/dying/body/body_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/dying/body/body_10.png -------------------------------------------------------------------------------- /static/images/plants/zombies/dying/body/body_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/dying/body/body_11.png -------------------------------------------------------------------------------- /static/images/plants/zombies/dying/body/body_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/dying/body/body_12.png -------------------------------------------------------------------------------- /static/images/plants/zombies/dying/body/body_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/dying/body/body_13.png -------------------------------------------------------------------------------- /static/images/plants/zombies/dying/body/body_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/dying/body/body_14.png -------------------------------------------------------------------------------- /static/images/plants/zombies/dying/body/body_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/dying/body/body_15.png -------------------------------------------------------------------------------- /static/images/plants/zombies/dying/body/body_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/dying/body/body_16.png -------------------------------------------------------------------------------- /static/images/plants/zombies/dying/body/body_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/dying/body/body_17.png -------------------------------------------------------------------------------- /static/images/plants/zombies/dying/head/head_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/dying/head/head_00.png -------------------------------------------------------------------------------- /static/images/plants/zombies/dying/head/head_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/dying/head/head_01.png -------------------------------------------------------------------------------- /static/images/plants/zombies/dying/head/head_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/dying/head/head_02.png -------------------------------------------------------------------------------- /static/images/plants/zombies/dying/head/head_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/dying/head/head_03.png -------------------------------------------------------------------------------- /static/images/plants/zombies/dying/head/head_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/dying/head/head_04.png -------------------------------------------------------------------------------- /static/images/plants/zombies/dying/head/head_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/dying/head/head_05.png -------------------------------------------------------------------------------- /static/images/plants/zombies/dying/head/head_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/dying/head/head_06.png -------------------------------------------------------------------------------- /static/images/plants/zombies/dying/head/head_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/dying/head/head_07.png -------------------------------------------------------------------------------- /static/images/plants/zombies/dying/head/head_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/dying/head/head_08.png -------------------------------------------------------------------------------- /static/images/plants/zombies/dying/head/head_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/dying/head/head_09.png -------------------------------------------------------------------------------- /static/images/plants/zombies/dying/head/head_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/dying/head/head_10.png -------------------------------------------------------------------------------- /static/images/plants/zombies/dying/head/head_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/dying/head/head_11.png -------------------------------------------------------------------------------- /static/images/plants/zombies/idle/idle_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/idle/idle_00.png -------------------------------------------------------------------------------- /static/images/plants/zombies/idle/idle_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/idle/idle_01.png -------------------------------------------------------------------------------- /static/images/plants/zombies/idle/idle_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/idle/idle_02.png -------------------------------------------------------------------------------- /static/images/plants/zombies/idle/idle_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/idle/idle_03.png -------------------------------------------------------------------------------- /static/images/plants/zombies/idle/idle_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/idle/idle_04.png -------------------------------------------------------------------------------- /static/images/plants/zombies/idle/idle_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/idle/idle_05.png -------------------------------------------------------------------------------- /static/images/plants/zombies/idle/idle_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/idle/idle_06.png -------------------------------------------------------------------------------- /static/images/plants/zombies/idle/idle_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/idle/idle_07.png -------------------------------------------------------------------------------- /static/images/plants/zombies/idle/idle_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/idle/idle_08.png -------------------------------------------------------------------------------- /static/images/plants/zombies/idle/idle_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/idle/idle_09.png -------------------------------------------------------------------------------- /static/images/plants/zombies/idle/idle_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/idle/idle_10.png -------------------------------------------------------------------------------- /static/images/plants/zombies/idle/idle_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/idle/idle_11.png -------------------------------------------------------------------------------- /static/images/plants/zombies/idle/idle_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/idle/idle_12.png -------------------------------------------------------------------------------- /static/images/plants/zombies/idle/idle_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/idle/idle_13.png -------------------------------------------------------------------------------- /static/images/plants/zombies/idle/idle_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/idle/idle_14.png -------------------------------------------------------------------------------- /static/images/plants/zombies/idle/idle_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/idle/idle_15.png -------------------------------------------------------------------------------- /static/images/plants/zombies/idle/idle_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/idle/idle_16.png -------------------------------------------------------------------------------- /static/images/plants/zombies/idle/idle_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/idle/idle_17.png -------------------------------------------------------------------------------- /static/images/plants/zombies/idle/idle_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/idle/idle_18.png -------------------------------------------------------------------------------- /static/images/plants/zombies/idle/idle_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/idle/idle_19.png -------------------------------------------------------------------------------- /static/images/plants/zombies/idle/idle_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/idle/idle_20.png -------------------------------------------------------------------------------- /static/images/plants/zombies/idle/idle_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/idle/idle_21.png -------------------------------------------------------------------------------- /static/images/plants/zombies/idle/idle_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/idle/idle_22.png -------------------------------------------------------------------------------- /static/images/plants/zombies/idle/idle_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/idle/idle_23.png -------------------------------------------------------------------------------- /static/images/plants/zombies/idle/idle_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/idle/idle_24.png -------------------------------------------------------------------------------- /static/images/plants/zombies/idle/idle_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/idle/idle_25.png -------------------------------------------------------------------------------- /static/images/plants/zombies/idle/idle_26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/idle/idle_26.png -------------------------------------------------------------------------------- /static/images/plants/zombies/idle/idle_27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/idle/idle_27.png -------------------------------------------------------------------------------- /static/images/plants/zombies/idle/idle_28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/idle/idle_28.png -------------------------------------------------------------------------------- /static/images/plants/zombies/idle/idle_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/idle/idle_29.png -------------------------------------------------------------------------------- /static/images/plants/zombies/idle/idle_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/idle/idle_30.png -------------------------------------------------------------------------------- /static/images/plants/zombies/run/run_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/run/run_00.png -------------------------------------------------------------------------------- /static/images/plants/zombies/run/run_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/run/run_01.png -------------------------------------------------------------------------------- /static/images/plants/zombies/run/run_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/run/run_02.png -------------------------------------------------------------------------------- /static/images/plants/zombies/run/run_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/run/run_03.png -------------------------------------------------------------------------------- /static/images/plants/zombies/run/run_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/run/run_04.png -------------------------------------------------------------------------------- /static/images/plants/zombies/run/run_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/run/run_05.png -------------------------------------------------------------------------------- /static/images/plants/zombies/run/run_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/run/run_06.png -------------------------------------------------------------------------------- /static/images/plants/zombies/run/run_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/run/run_07.png -------------------------------------------------------------------------------- /static/images/plants/zombies/run/run_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/run/run_08.png -------------------------------------------------------------------------------- /static/images/plants/zombies/run/run_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/run/run_09.png -------------------------------------------------------------------------------- /static/images/plants/zombies/run/run_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/run/run_10.png -------------------------------------------------------------------------------- /static/images/plants/zombies/run/run_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/run/run_11.png -------------------------------------------------------------------------------- /static/images/plants/zombies/run/run_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/run/run_12.png -------------------------------------------------------------------------------- /static/images/plants/zombies/run/run_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/run/run_13.png -------------------------------------------------------------------------------- /static/images/plants/zombies/run/run_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/run/run_14.png -------------------------------------------------------------------------------- /static/images/plants/zombies/run/run_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/run/run_15.png -------------------------------------------------------------------------------- /static/images/plants/zombies/run/run_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/run/run_16.png -------------------------------------------------------------------------------- /static/images/plants/zombies/run/run_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/run/run_17.png -------------------------------------------------------------------------------- /static/images/plants/zombies/run/run_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/run/run_18.png -------------------------------------------------------------------------------- /static/images/plants/zombies/run/run_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/run/run_19.png -------------------------------------------------------------------------------- /static/images/plants/zombies/run/run_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/run/run_20.png -------------------------------------------------------------------------------- /static/images/plants/zombies/run/run_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/run/run_21.png -------------------------------------------------------------------------------- /static/images/plants/zombies/run/run_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/run/run_22.png -------------------------------------------------------------------------------- /static/images/plants/zombies/run/run_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/run/run_23.png -------------------------------------------------------------------------------- /static/images/plants/zombies/run/run_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/run/run_24.png -------------------------------------------------------------------------------- /static/images/plants/zombies/run/run_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/run/run_25.png -------------------------------------------------------------------------------- /static/images/plants/zombies/run/run_26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/run/run_26.png -------------------------------------------------------------------------------- /static/images/plants/zombies/run/run_27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/run/run_27.png -------------------------------------------------------------------------------- /static/images/plants/zombies/run/run_28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/run/run_28.png -------------------------------------------------------------------------------- /static/images/plants/zombies/run/run_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/run/run_29.png -------------------------------------------------------------------------------- /static/images/plants/zombies/run/run_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/plants/zombies/run/run_30.png -------------------------------------------------------------------------------- /static/images/process/m_process.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/process/m_process.jpg -------------------------------------------------------------------------------- /static/images/screen/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/screen/1.png -------------------------------------------------------------------------------- /static/images/screen/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/screen/11.png -------------------------------------------------------------------------------- /static/images/screen/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/screen/2.png -------------------------------------------------------------------------------- /static/images/screen/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/screen/22.png -------------------------------------------------------------------------------- /static/images/screen/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/screen/3.png -------------------------------------------------------------------------------- /static/images/screen/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/screen/bg.png -------------------------------------------------------------------------------- /static/images/screen/third.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/screen/third.jpeg -------------------------------------------------------------------------------- /static/images/screen/two.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/screen/two.jpeg -------------------------------------------------------------------------------- /static/images/screen/two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/screen/two.png -------------------------------------------------------------------------------- /static/images/screen/two.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/images/screen/two.psd -------------------------------------------------------------------------------- /static/lib/README.md: -------------------------------------------------------------------------------- 1 | 1、页面滑动组件mescroll 地址:https://github.com/mescroll/mescroll 2 | -------------------------------------------------------------------------------- /static/lib/mescroll/mescroll-tip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/lib/mescroll/mescroll-tip.txt -------------------------------------------------------------------------------- /static/lib/mobiscroll/css/icons_mobiscroll.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/lib/mobiscroll/css/icons_mobiscroll.eot -------------------------------------------------------------------------------- /static/lib/mobiscroll/css/icons_mobiscroll.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/lib/mobiscroll/css/icons_mobiscroll.ttf -------------------------------------------------------------------------------- /static/lib/mobiscroll/css/icons_mobiscroll.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/lib/mobiscroll/css/icons_mobiscroll.woff -------------------------------------------------------------------------------- /static/lib/scroll/img/mescroll-totop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoro-r/jdf-phone-ui/37318cc261d8d9b65e862d2ca362111d6368dc02/static/lib/scroll/img/mescroll-totop.png --------------------------------------------------------------------------------