├── .gitignore ├── README.md ├── bower.json ├── gulpfile.js ├── package.json ├── src ├── api │ └── register.js ├── components │ ├── flexible.html │ ├── footer │ │ └── footer.html │ ├── header │ │ └── head.html │ └── layout │ │ ├── layout.jade │ │ └── pdr.jade ├── static │ ├── css │ │ ├── bootstrap.css │ │ └── reset.css │ ├── fonts │ │ ├── demo.css │ │ ├── demo_fontclass.html │ │ ├── demo_symbol.html │ │ ├── demo_unicode.html │ │ ├── iconfont.css │ │ ├── iconfont.eot │ │ ├── iconfont.js │ │ ├── iconfont.svg │ │ ├── iconfont.ttf │ │ └── iconfont.woff │ ├── images │ │ ├── cashbg.png │ │ └── in-baseMap.png │ ├── js │ │ ├── handlebars.runtime.js │ │ ├── jade.js │ │ ├── jquery-3.2.1.js │ │ └── jquery3.2.1.min.js │ └── layer │ │ ├── layer.js │ │ ├── mobile │ │ ├── layer.js │ │ └── need │ │ │ └── layer.css │ │ └── skin │ │ └── default │ │ ├── icon-ext.png │ │ ├── icon.png │ │ ├── layer.css │ │ ├── loading-0.gif │ │ ├── loading-1.gif │ │ └── loading-2.gif └── views │ ├── demo │ ├── demo.hbs │ ├── demo.js │ ├── demo.scss │ ├── index.html │ └── mobile.html │ └── jade-demo │ ├── demo.hbs │ ├── mobile.jade │ ├── mobile.js │ ├── pc.jade │ └── pc.js └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minguman/browsersync-gulp-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minguman/browsersync-gulp-demo/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minguman/browsersync-gulp-demo/HEAD/bower.json -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minguman/browsersync-gulp-demo/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minguman/browsersync-gulp-demo/HEAD/package.json -------------------------------------------------------------------------------- /src/api/register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minguman/browsersync-gulp-demo/HEAD/src/api/register.js -------------------------------------------------------------------------------- /src/components/flexible.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minguman/browsersync-gulp-demo/HEAD/src/components/flexible.html -------------------------------------------------------------------------------- /src/components/footer/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minguman/browsersync-gulp-demo/HEAD/src/components/footer/footer.html -------------------------------------------------------------------------------- /src/components/header/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minguman/browsersync-gulp-demo/HEAD/src/components/header/head.html -------------------------------------------------------------------------------- /src/components/layout/layout.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minguman/browsersync-gulp-demo/HEAD/src/components/layout/layout.jade -------------------------------------------------------------------------------- /src/components/layout/pdr.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minguman/browsersync-gulp-demo/HEAD/src/components/layout/pdr.jade -------------------------------------------------------------------------------- /src/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minguman/browsersync-gulp-demo/HEAD/src/static/css/bootstrap.css -------------------------------------------------------------------------------- /src/static/css/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minguman/browsersync-gulp-demo/HEAD/src/static/css/reset.css -------------------------------------------------------------------------------- /src/static/fonts/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minguman/browsersync-gulp-demo/HEAD/src/static/fonts/demo.css -------------------------------------------------------------------------------- /src/static/fonts/demo_fontclass.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minguman/browsersync-gulp-demo/HEAD/src/static/fonts/demo_fontclass.html -------------------------------------------------------------------------------- /src/static/fonts/demo_symbol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minguman/browsersync-gulp-demo/HEAD/src/static/fonts/demo_symbol.html -------------------------------------------------------------------------------- /src/static/fonts/demo_unicode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minguman/browsersync-gulp-demo/HEAD/src/static/fonts/demo_unicode.html -------------------------------------------------------------------------------- /src/static/fonts/iconfont.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minguman/browsersync-gulp-demo/HEAD/src/static/fonts/iconfont.css -------------------------------------------------------------------------------- /src/static/fonts/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minguman/browsersync-gulp-demo/HEAD/src/static/fonts/iconfont.eot -------------------------------------------------------------------------------- /src/static/fonts/iconfont.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minguman/browsersync-gulp-demo/HEAD/src/static/fonts/iconfont.js -------------------------------------------------------------------------------- /src/static/fonts/iconfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minguman/browsersync-gulp-demo/HEAD/src/static/fonts/iconfont.svg -------------------------------------------------------------------------------- /src/static/fonts/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minguman/browsersync-gulp-demo/HEAD/src/static/fonts/iconfont.ttf -------------------------------------------------------------------------------- /src/static/fonts/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minguman/browsersync-gulp-demo/HEAD/src/static/fonts/iconfont.woff -------------------------------------------------------------------------------- /src/static/images/cashbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minguman/browsersync-gulp-demo/HEAD/src/static/images/cashbg.png -------------------------------------------------------------------------------- /src/static/images/in-baseMap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minguman/browsersync-gulp-demo/HEAD/src/static/images/in-baseMap.png -------------------------------------------------------------------------------- /src/static/js/handlebars.runtime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minguman/browsersync-gulp-demo/HEAD/src/static/js/handlebars.runtime.js -------------------------------------------------------------------------------- /src/static/js/jade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minguman/browsersync-gulp-demo/HEAD/src/static/js/jade.js -------------------------------------------------------------------------------- /src/static/js/jquery-3.2.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minguman/browsersync-gulp-demo/HEAD/src/static/js/jquery-3.2.1.js -------------------------------------------------------------------------------- /src/static/js/jquery3.2.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minguman/browsersync-gulp-demo/HEAD/src/static/js/jquery3.2.1.min.js -------------------------------------------------------------------------------- /src/static/layer/layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minguman/browsersync-gulp-demo/HEAD/src/static/layer/layer.js -------------------------------------------------------------------------------- /src/static/layer/mobile/layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minguman/browsersync-gulp-demo/HEAD/src/static/layer/mobile/layer.js -------------------------------------------------------------------------------- /src/static/layer/mobile/need/layer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minguman/browsersync-gulp-demo/HEAD/src/static/layer/mobile/need/layer.css -------------------------------------------------------------------------------- /src/static/layer/skin/default/icon-ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minguman/browsersync-gulp-demo/HEAD/src/static/layer/skin/default/icon-ext.png -------------------------------------------------------------------------------- /src/static/layer/skin/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minguman/browsersync-gulp-demo/HEAD/src/static/layer/skin/default/icon.png -------------------------------------------------------------------------------- /src/static/layer/skin/default/layer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minguman/browsersync-gulp-demo/HEAD/src/static/layer/skin/default/layer.css -------------------------------------------------------------------------------- /src/static/layer/skin/default/loading-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minguman/browsersync-gulp-demo/HEAD/src/static/layer/skin/default/loading-0.gif -------------------------------------------------------------------------------- /src/static/layer/skin/default/loading-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minguman/browsersync-gulp-demo/HEAD/src/static/layer/skin/default/loading-1.gif -------------------------------------------------------------------------------- /src/static/layer/skin/default/loading-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minguman/browsersync-gulp-demo/HEAD/src/static/layer/skin/default/loading-2.gif -------------------------------------------------------------------------------- /src/views/demo/demo.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minguman/browsersync-gulp-demo/HEAD/src/views/demo/demo.hbs -------------------------------------------------------------------------------- /src/views/demo/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minguman/browsersync-gulp-demo/HEAD/src/views/demo/demo.js -------------------------------------------------------------------------------- /src/views/demo/demo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minguman/browsersync-gulp-demo/HEAD/src/views/demo/demo.scss -------------------------------------------------------------------------------- /src/views/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minguman/browsersync-gulp-demo/HEAD/src/views/demo/index.html -------------------------------------------------------------------------------- /src/views/demo/mobile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minguman/browsersync-gulp-demo/HEAD/src/views/demo/mobile.html -------------------------------------------------------------------------------- /src/views/jade-demo/demo.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minguman/browsersync-gulp-demo/HEAD/src/views/jade-demo/demo.hbs -------------------------------------------------------------------------------- /src/views/jade-demo/mobile.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minguman/browsersync-gulp-demo/HEAD/src/views/jade-demo/mobile.jade -------------------------------------------------------------------------------- /src/views/jade-demo/mobile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minguman/browsersync-gulp-demo/HEAD/src/views/jade-demo/mobile.js -------------------------------------------------------------------------------- /src/views/jade-demo/pc.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minguman/browsersync-gulp-demo/HEAD/src/views/jade-demo/pc.jade -------------------------------------------------------------------------------- /src/views/jade-demo/pc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minguman/browsersync-gulp-demo/HEAD/src/views/jade-demo/pc.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minguman/browsersync-gulp-demo/HEAD/webpack.config.js --------------------------------------------------------------------------------