摘要:
1.base64加密: 2.md5加密: 3.sha1加密: 阅读全文
摘要:
1 "browserlist":[ 2 ">=1%", 3 "last 2 versions" 4 ], 阅读全文
摘要:
webpack打包处理css的时候需要两个loader: style-loader 和css-loader 安装: style-loader:负责将打包生成的代码嵌入到html页面中. css-loader:是允许将css文件引入到.js文件中; 简单的打包css的webpack.config.js 阅读全文
摘要:
1.在本地文件夹下建立.gitignore文件,将github下的github/gitignore/Node.gitignore文件复制到.gitignore中; 2.执行命令git add . 3.git commit -m "init" 4.建立远程仓库 5.执行git remote add o 阅读全文
摘要:
1.安装browser-sync: 2.在package.json中添加启动代码: 3.运行:npm run start ,监听在localhost:3000端口; 阅读全文
摘要:
1 2 3 4 阅读全文
摘要:
两种方法: 1.webpack的methods require.ensure 2.ES 2015的Loader spec require.include当两个子模块都引用了一个第三方 的模块,就可以将这个第三方的模块放到父模块中;subPageA.js和subPageB.js都依赖moduleA.j 阅读全文
摘要:
公共代码提取功能是针对多入口文件的; 背景:在pageA.js和pageB.js中分别引用subPageA.js和subPageB.js webpack.config.js文件: 阅读全文
摘要:
1.第一种使用方法:命令行(没有配置文件)--把app.js打包成bundle.js 2.第二种使用方法:配置文件: 如果配置文件的名称不是webpack.config.js可以在命令行中修改(假设你的配置文件为webpack.conf.js) 3.es6文件的引入与导出 4.common.js文件 阅读全文
摘要:
演示效果地址:https://www.swiper.com.cn/demo/indexsample/; 代码: 阅读全文