0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

bootstrapのtoggleにstyleを適用させる

Last updated at Posted at 2019-11-02

bootstrapでcheckboxをtoggleで作った時にstyleの変更の仕方が複数あったのでまとめておきます。
今回はボタンの角を丸くして、toggle-handleを白くします。

環境

bootstrap4
jQuery

留意点

html,cssはそれぞれhaml,scssで記述しています。

コード

方法としては3パターンありました。
1.html内にcssを記述する場合

new.html.haml
:css
  .toggle.check, .toggle-on.check, .toggle-off.check { border-radius: 20rem; }
  .toggle .toggle-handle { border-radius: 20rem; background-color: white;}
%input#passcheck{:type => "checkbox", "data-style" => "check"}

Bootstrap ToggleのCustom Styleの<style>〜</style>の部分をhamlに直すと上のcss: の記述になるみたいです。

2.cssを別で準備する場合

new.html.haml
%input#passcheck{:type => "checkbox", "data-style" => "check"}
sign.scss
.toggle.check, .toggle-on.check, .toggle-off.check {
    border-radius: 20rem;
  }
.toggle-handle {
    border-radius: 20rem;
    background-color: white;
  }

3.jQueryで読み込ませる場合

new.html.haml
%input#passcheck{:type => "checkbox"}
sign.scss
.toggle.check, .toggle-on.check, .toggle-off.check {
    border-radius: 20rem;
  }
.toggle-handle {
    border-radius: 20rem;
    background-color: white;
  }
sign_up.js
$('#passcheck').bootstrapToggle({ // パスワードのtoggleボタン
   style: 'check'
});

styleの記述で、読み込ませたいtoggle.〇〇を指定している感じですね。

実行結果

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?