├── .gitignore ├── LICENSE ├── README.md ├── dist ├── layer.js ├── mobile │ ├── layer.js │ └── need │ │ └── layer.css └── theme │ ├── default │ ├── icon-ext.png │ ├── icon.png │ ├── layer.css │ ├── loading-0.gif │ ├── loading-1.gif │ └── loading-2.gif │ └── moon │ ├── default.png │ └── style.css ├── gulpfile.js ├── package.json ├── src ├── README.md ├── layer.js ├── mobile │ ├── README.md │ ├── layer.js │ └── need │ │ └── layer.css └── theme │ ├── default │ ├── icon-ext.png │ ├── icon.png │ ├── layer.css │ ├── loading-0.gif │ ├── loading-1.gif │ └── loading-2.gif │ └── moon │ ├── default.png │ └── style.css └── test └── demo.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layui/layer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layui/layer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layui/layer/HEAD/README.md -------------------------------------------------------------------------------- /dist/layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layui/layer/HEAD/dist/layer.js -------------------------------------------------------------------------------- /dist/mobile/layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layui/layer/HEAD/dist/mobile/layer.js -------------------------------------------------------------------------------- /dist/mobile/need/layer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layui/layer/HEAD/dist/mobile/need/layer.css -------------------------------------------------------------------------------- /dist/theme/default/icon-ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layui/layer/HEAD/dist/theme/default/icon-ext.png -------------------------------------------------------------------------------- /dist/theme/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layui/layer/HEAD/dist/theme/default/icon.png -------------------------------------------------------------------------------- /dist/theme/default/layer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layui/layer/HEAD/dist/theme/default/layer.css -------------------------------------------------------------------------------- /dist/theme/default/loading-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layui/layer/HEAD/dist/theme/default/loading-0.gif -------------------------------------------------------------------------------- /dist/theme/default/loading-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layui/layer/HEAD/dist/theme/default/loading-1.gif -------------------------------------------------------------------------------- /dist/theme/default/loading-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layui/layer/HEAD/dist/theme/default/loading-2.gif -------------------------------------------------------------------------------- /dist/theme/moon/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layui/layer/HEAD/dist/theme/moon/default.png -------------------------------------------------------------------------------- /dist/theme/moon/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layui/layer/HEAD/dist/theme/moon/style.css -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layui/layer/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layui/layer/HEAD/package.json -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- 1 | 2 | ## 注意 3 | 开发版源码随时可能会提交,因此生产环境更建议 dist 目录中压缩后的 layer.js。 -------------------------------------------------------------------------------- /src/layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layui/layer/HEAD/src/layer.js -------------------------------------------------------------------------------- /src/mobile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layui/layer/HEAD/src/mobile/README.md -------------------------------------------------------------------------------- /src/mobile/layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layui/layer/HEAD/src/mobile/layer.js -------------------------------------------------------------------------------- /src/mobile/need/layer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layui/layer/HEAD/src/mobile/need/layer.css -------------------------------------------------------------------------------- /src/theme/default/icon-ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layui/layer/HEAD/src/theme/default/icon-ext.png -------------------------------------------------------------------------------- /src/theme/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layui/layer/HEAD/src/theme/default/icon.png -------------------------------------------------------------------------------- /src/theme/default/layer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layui/layer/HEAD/src/theme/default/layer.css -------------------------------------------------------------------------------- /src/theme/default/loading-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layui/layer/HEAD/src/theme/default/loading-0.gif -------------------------------------------------------------------------------- /src/theme/default/loading-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layui/layer/HEAD/src/theme/default/loading-1.gif -------------------------------------------------------------------------------- /src/theme/default/loading-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layui/layer/HEAD/src/theme/default/loading-2.gif -------------------------------------------------------------------------------- /src/theme/moon/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layui/layer/HEAD/src/theme/moon/default.png -------------------------------------------------------------------------------- /src/theme/moon/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layui/layer/HEAD/src/theme/moon/style.css -------------------------------------------------------------------------------- /test/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layui/layer/HEAD/test/demo.html --------------------------------------------------------------------------------