「Html/bootstrap/bootbox」の版間の差分
提供: 初心者エンジニアの簡易メモ
(→サンプル) |
(→サイズ変更) |
||
(同じ利用者による、間の1版が非表示) | |||
行26: | 行26: | ||
</html> | </html> | ||
</pre> | </pre> | ||
+ | |||
+ | ==サイズ変更== | ||
+ | <pre> | ||
+ | bootbox.alert({ | ||
+ | size: "small", // large | ||
+ | title: "Your Title", | ||
+ | message: "Your message here…", | ||
+ | callback: function(){ /* your callback code */ } | ||
+ | }); | ||
+ | </pre> | ||
+ | 4.0.0、4.1.0、4.2.0では使えなかった4.3.0では使えた。4.3以降の機能? |
2017年1月19日 (木) 10:52時点における最新版
bootboxとは
boostrapを使ったgrayboxみたいなやつ
公式
サンプル
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" /> </head> <body> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/bootbox.js/4.4.0/bootbox.min.js"></script> <script> bootbox.alert("Hello world!", function() { console.log("hello"); // Example.show("Hello world callback"); }); </script> </body> </html>
サイズ変更
bootbox.alert({ size: "small", // large title: "Your Title", message: "Your message here…", callback: function(){ /* your callback code */ } });
4.0.0、4.1.0、4.2.0では使えなかった4.3.0では使えた。4.3以降の機能?