实例介绍
简单的一个由ionic开发的商城demo,欢迎多提意见
【实例截图】
【核心代码】
商城demo-master
├── __MACOSX
│ └── 鍟嗗煄demo-master
│ ├── hooks
│ │ └── after_prepare
│ ├── resources
│ │ ├── android
│ │ │ ├── icon
│ │ │ └── splash
│ │ └── ios
│ │ ├── icon
│ │ └── splash
│ ├── scss
│ └── www
│ ├── css
│ ├── font
│ │ └── roboto
│ ├── img
│ ├── js
│ ├── lib
│ │ ├── angular
│ │ ├── angular-animate
│ │ ├── angular-cookies
│ │ ├── angular-resource
│ │ ├── angular-sanitize
│ │ ├── angular-ui-router
│ │ │ ├── api
│ │ │ ├── release
│ │ │ └── src
│ │ ├── debuggap
│ │ └── ionic
│ │ ├── css
│ │ ├── fonts
│ │ ├── js
│ │ └── scss
│ │ └── ionicons
│ └── templates
│ ├── client
│ ├── order
│ ├── product
│ ├── search
│ └── shoppingcart
└── 鍟嗗煄demo-master
├── bower.json
├── config.txt
├── config.xml
├── gulpfile.js
├── hooks
│ ├── after_prepare
│ │ └── 010_add_platform_class.js
│ └── README.md
├── ionic.project
├── package.json
├── README.md
├── resources
│ ├── android
│ │ ├── icon
│ │ │ ├── drawable-hdpi-icon.png
│ │ │ ├── drawable-ldpi-icon.png
│ │ │ ├── drawable-mdpi-icon.png
│ │ │ ├── drawable-xhdpi-icon.png
│ │ │ ├── drawable-xxhdpi-icon.png
│ │ │ └── drawable-xxxhdpi-icon.png
│ │ └── splash
│ │ ├── drawable-land-hdpi-screen.png
│ │ ├── drawable-land-ldpi-screen.png
│ │ ├── drawable-land-mdpi-screen.png
│ │ ├── drawable-land-xhdpi-screen.png
│ │ ├── drawable-land-xxhdpi-screen.png
│ │ ├── drawable-land-xxxhdpi-screen.png
│ │ ├── drawable-port-hdpi-screen.png
│ │ ├── drawable-port-ldpi-screen.png
│ │ ├── drawable-port-mdpi-screen.png
│ │ ├── drawable-port-xhdpi-screen.png
│ │ ├── drawable-port-xxhdpi-screen.png
│ │ └── drawable-port-xxxhdpi-screen.png
│ ├── icon.png
│ ├── ios
│ │ ├── icon
│ │ │ ├── icon@2x.png
│ │ │ ├── icon-40@2x.png
│ │ │ ├── icon-40.png
│ │ │ ├── icon-50@2x.png
│ │ │ ├── icon-50.png
│ │ │ ├── icon-60@2x.png
│ │ │ ├── icon-60@3x.png
│ │ │ ├── icon-60.png
│ │ │ ├── icon-72@2x.png
│ │ │ ├── icon-72.png
│ │ │ ├── icon-76@2x.png
│ │ │ ├── icon-76.png
│ │ │ ├── icon.png
│ │ │ ├── icon-small@2x.png
│ │ │ ├── icon-small@3x.png
│ │ │ └── icon-small.png
│ │ └── splash
│ │ ├── Default@2x~iphone.png
│ │ ├── Default-568h@2x~iphone.png
│ │ ├── Default-667h.png
│ │ ├── Default-736h.png
│ │ ├── Default~iphone.png
│ │ ├── Default-Landscape@2x~ipad.png
│ │ ├── Default-Landscape-736h.png
│ │ ├── Default-Landscape~ipad.png
│ │ ├── Default-Portrait@2x~ipad.png
│ │ └── Default-Portrait~ipad.png
│ └── splash.png
├── scss
│ ├── ionic.app.scss
│ └── mixin.scss
└── www
├── css
│ ├── ionic.app.css
│ ├── ionic.app.min.css
│ └── style.css
├── font
│ └── roboto
│ ├── LICENSE.txt
│ ├── Roboto-BlackItalic.ttf
│ ├── Roboto-Black.ttf
│ ├── Roboto-BoldItalic.ttf
│ ├── Roboto-Bold.ttf
│ ├── Roboto-Italic.ttf
│ ├── Roboto-LightItalic.ttf
│ ├── Roboto-Light.ttf
│ ├── Roboto-MediumItalic.ttf
│ ├── Roboto-Medium.ttf
│ ├── Roboto-Regular.ttf
│ ├── Roboto-ThinItalic.ttf
│ └── Roboto-Thin.ttf
├── img
│ ├── accessory.png
│ ├── add.png
│ ├── beauty-salon.png
│ ├── bikini.png
│ ├── deliver.png
│ ├── dress.png
│ ├── dropdown.png
│ ├── event.png
│ ├── icons.jpg
│ ├── mark.png
│ ├── mine.png
│ ├── pants.png
│ ├── pay.png
│ ├── reduce.png
│ ├── refound.png
│ ├── shoes.png
│ ├── suit.png
│ ├── take.png
│ ├── t-shirt.png
│ └── underwear.png
├── index.html
├── js
│ ├── app.js
│ ├── controllers.js
│ ├── directives.js
│ ├── filters.js
│ ├── models.js
│ ├── services.js
│ └── utils.js
├── lib
│ ├── angular
│ │ ├── angular-csp.css
│ │ ├── angular.js
│ │ ├── angular.min.js
│ │ ├── angular.min.js.gzip
│ │ ├── angular.min.js.map
│ │ ├── bower.json
│ │ ├── index.js
│ │ ├── package.json
│ │ └── README.md
│ ├── angular-animate
│ │ ├── angular-animate.js
│ │ ├── angular-animate.min.js
│ │ ├── angular-animate.min.js.map
│ │ ├── bower.json
│ │ ├── index.js
│ │ ├── package.json
│ │ └── README.md
│ ├── angular-cookies
│ │ ├── angular-cookies.js
│ │ ├── angular-cookies.min.js
│ │ ├── angular-cookies.min.js.map
│ │ ├── bower.json
│ │ ├── index.js
│ │ ├── package.json
│ │ └── README.md
│ ├── angular-resource
│ │ ├── angular-resource.js
│ │ ├── angular-resource.min.js
│ │ ├── angular-resource.min.js.map
│ │ ├── bower.json
│ │ ├── index.js
│ │ ├── package.json
│ │ └── README.md
│ ├── angular-sanitize
│ │ ├── angular-sanitize.js
│ │ ├── angular-sanitize.min.js
│ │ ├── angular-sanitize.min.js.map
│ │ ├── bower.json
│ │ ├── index.js
│ │ ├── package.json
│ │ └── README.md
│ ├── angular-ui-router
│ │ ├── api
│ │ │ └── angular-ui-router.d.ts
│ │ ├── bower.json
│ │ ├── CHANGELOG.md
│ │ ├── CONTRIBUTING.md
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── release
│ │ │ ├── angular-ui-router.js
│ │ │ └── angular-ui-router.min.js
│ │ └── src
│ │ ├── common.js
│ │ ├── resolve.js
│ │ ├── stateDirectives.js
│ │ ├── stateFilters.js
│ │ ├── state.js
│ │ ├── templateFactory.js
│ │ ├── urlMatcherFactory.js
│ │ ├── urlRouter.js
│ │ ├── viewDirective.js
│ │ ├── view.js
│ │ └── viewScroll.js
│ ├── debuggap
│ │ └── debuggap.js
│ └── ionic
│ ├── bower.json
│ ├── css
│ │ ├── ionic.css
│ │ └── ionic.min.css
│ ├── fonts
│ │ ├── ionicons.eot
│ │ ├── ionicons.svg
│ │ ├── ionicons.ttf
│ │ └── ionicons.woff
│ ├── js
│ │ ├── ionic-angular.js
│ │ ├── ionic-angular.min.js
│ │ ├── ionic.bundle.js
│ │ ├── ionic.bundle.min.js
│ │ ├── ionic.js
│ │ └── ionic.min.js
│ ├── README.md
│ └── scss
│ ├── _action-sheet.scss
│ ├── _animations.scss
│ ├── _backdrop.scss
│ ├── _badge.scss
│ ├── _bar.scss
│ ├── _button-bar.scss
│ ├── _button.scss
│ ├── _checkbox.scss
│ ├── _form.scss
│ ├── _grid.scss
│ ├── ionicons
│ │ ├── _ionicons-animation.scss
│ │ ├── _ionicons-font.scss
│ │ ├── _ionicons-icons.scss
│ │ ├── ionicons.scss
│ │ └── _ionicons-variables.scss
│ ├── ionic.scss
│ ├── _items.scss
│ ├── _list.scss
│ ├── _loaders.scss
│ ├── _loading.scss
│ ├── _menu.scss
│ ├── _mixins.scss
│ ├── _modal.scss
│ ├── _platform.scss
│ ├── _popover.scss
│ ├── _popup.scss
│ ├── _progress.scss
│ ├── _radio.scss
│ ├── _range.scss
│ ├── _refresher.scss
│ ├── _reset.scss
│ ├── _scaffolding.scss
│ ├── _select.scss
│ ├── _slide-box.scss
│ ├── _spinner.scss
│ ├── _split-pane.scss
│ ├── _tabs.scss
│ ├── _toggle.scss
│ ├── _transitions.scss
│ ├── _type.scss
│ ├── _util.scss
│ └── _variables.scss
└── templates
├── client
│ ├── address-edit.html
│ ├── address-list.html
│ ├── address-selection.html
│ ├── area-selection.html
│ ├── collections.html
│ ├── forget.html
│ ├── msgs.html
│ ├── profile.html
│ ├── signon.html
│ ├── signup.html
│ └── suggestion.html
├── detail.html
├── home.html
├── mine.html
├── msg.html
├── myframe.html
├── order
│ ├── detail.html
│ └── list.html
├── product
│ ├── detail.html
│ └── list.html
├── search
│ └── search.html
├── shoppingcart
│ ├── address-selection.html
│ └── shoppingcart.html
└── tabs.html
81 directories, 238 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论