bootstrap自定义了什么?

时间:2018-01-24 05:01:04

标签: twitter-bootstrap bootstrap-4

Bootstrap 3曾经有过这个自定义选项:https://getbootstrap.com/docs/3.3/customize/

但是,我无法为Bootstrap 4找到这样的链接。我只是建立一个简单的网站,并且肯定不会使用其80%的功能。我也不想要大多数JS功能。我该怎么做?

2 个答案:

答案 0 :(得分:3)

此功能尚未在Bootstrap 4 afaik。

但您可以修改SCSS文件并构建Bootstrap css和js文件。

这就是@mdo对此的评价

  

这与在bootstrap.scss中注释掉import语句基本相同。我知道在共享组件方面还有更多内容,但它基本上是1:1。之前已经被请求了,然后我就过去了,现在还是。

检查Bootstrap问题/功能请求here

实施例

@import "node_modules/bootstrap/scss/functions";
@import "node_modules/bootstrap/scss/variables";
@import "node_modules/bootstrap/scss/mixins";
@import "node_modules/bootstrap/scss/root";
@import "node_modules/bootstrap/scss/print";
@import "node_modules/bootstrap/scss/reboot";
@import "node_modules/bootstrap/scss/type";
//@import "node_modules/bootstrap/scss/images";
@import "node_modules/bootstrap/scss/code";
@import "node_modules/bootstrap/scss/grid";
@import "node_modules/bootstrap/scss/tables";
@import "node_modules/bootstrap/scss/forms";
@import "node_modules/bootstrap/scss/buttons";
@import "node_modules/bootstrap/scss/transitions";

<强>更新

这是一个非常好的在线Bootstrap定制器Bootstrap.build

答案 1 :(得分:2)

对于Bootstrap 4,根本就不是自定义程序:

  

放弃了在线定制器,转而采用更广泛的设置   文档和自定义构建。

source

但是,如果您想在网络中自定义Bootstrap,您可以使用第三方工具,例如http://bootstrapcustomizer.com/