angular2配置使用ng2-bootstrap
程序员文章站
2022-09-30 16:58:46
第一步,安装。进入项目目录 npm install ng2-bootstrap bootstrap --save 第二步,angular-cli 配置 ng2-bootstrap src/.angular-cli.json 文件里"apps"项下的"styles"项,添加 bootstrap.min ......
第一步,安装。进入项目目录
npm install ng2-bootstrap bootstrap --save
第二步,angular-cli 配置 ng2-bootstrap
src/.angular-cli.json 文件里"apps"项下的"styles"项,添加 bootstrap.min.css
"styles": [
"styles.css",
"../node_modules/bootstrap/dist/css/bootstrap.min.css"
]
第三步,测试:
在app.component.html添加使用bootstrap按钮样式的代码:
<!-- Standard button --> <button type="button" class="btn btn-default">(默认样式)Default</button> <!-- Provides extra visual weight and identifies the primary action in a set of buttons --> <button type="button" class="btn btn-primary">(首选项)Primary</button> <!-- Indicates a successful or positive action --> <button type="button" class="btn btn-success">(成功)Success</button> <!-- Contextual button for informational alert messages --> <button type="button" class="btn btn-info">(一般信息)Info</button> <!-- Indicates caution should be taken with this action --> <button type="button" class="btn btn-warning">(警告)Warning</button> <!-- Indicates a dangerous or potentially negative action --> <button type="button" class="btn btn-danger">(危险)Danger</button> <!-- Deemphasize a button by making it look like a link while maintaining button behavior --> <button type="button" class="btn btn-link">(链接)Link</button>
启动浏览器看效果。
上一篇: 通过网上赚钱方法汇总
推荐阅读
-
Zookeeper作为配置中心使用说明
-
Laravel 下配置 Redis 让缓存、Session 各自使用不同的 Redis 数据库
-
在Asp.Net或.Net Core中配置使用MarkDown富文本编辑器有开源模板代码(代码是.net core3.0版本)
-
在Asp.Net Core中配置使用MarkDown富文本编辑器实现图片上传和截图上传(开源代码.net core3.0)
-
Android项目中使用HTTPS配置的步骤详解
-
RxJava2配置及使用详解
-
详解VS Code使用之Vue工程配置format代码格式化
-
使用微软的webmatrix配置php网站的步骤
-
详解Spring Boot配置使用Logback进行日志记录的实战
-
使用vs code编辑调试php配置的方法