This repository is manual for programing lesson.
Bootstrapとは、レスポンシブデザインなデザインを簡単に作ることができるライブラリです。
ライブラリとは、便利な機能を集めたコードの集まりです。これを読み込んで使うことで、 いろいろなことを簡単に実装することができます。
今回のBootstrapは、レスポンシブなデザインを簡単に作りたいときに、よく使われるライブラリです。
Bootstrapのようなライブラリを使いたいときは、「おまじない」を書かなければいけません。
Bootstrap公式サイトのサイトから、おまじないコードをコピーしてみよう。
<!doctype html>
<html lang="ja">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<title>Hello, world!</title>
</head>
<body>
<h1>Hello, world!</h1>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
</body>
</html>
実際にBootstrapを使ったページと使わなかったページの違いを見てみましょう。
paiza ラーニングの講義の右側のページを使って以下のコードをコピーして「コードの実行」してみよう。
<html>
<head>
<style>
h1 {
font-size: 20px;
}
h2 {
font-size: 15px;
}
</style>
</head>
<body>
<div>
<h1>私のWebサイト</h1>
<h2>私のプロフィール</h2>
<table>
<tr>
<td>名前</td>
<td>〇〇太郎</td>
</tr>
<tr>
<td>誕生日</td>
<td>20XX年X月x日</td>
</tr>
<tr>
<td></td>
<td>プログラミングを勉強すること</td>
</tr>
</table>
<h2>私の好きなこと</h2>
<ul>
<li>サッカー</li>
<li>ゲーム</li>
<li>旅行</li>
</ul>
</div>
</body>
</html>
続いて、bootstrapを使って実行してみよう!
<html>
<head>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<style>
h1 {
font-size: 20px;
}
h2 {
font-size: 15px;
}
</style>
</head>
<body>
<div class="container">
<h1 class="p-5 bg-dark text-white">私のWebサイト</h1>
<h2 class="p-3 bg-primary text-white">私のプロフィール</h2>
<table class="table table-striped">
<tr>
<td>名前</td>
<td>〇〇太郎</td>
</tr>
<tr>
<td>誕生日</td>
<td>20XX年X月x日</td>
</tr>
<tr>
<td></td>
<td>プログラミングを勉強すること</td>
</tr>
</table>
<h2 class="p-3 bg-primary text-white">私の好きなこと</h2>
<ul class="list-group">
<li class="list-group-item list-group-item-info">サッカー</li>
<li class="list-group-item list-group-item-warning">ゲーム</li>
<li class="list-group-item list-group-item-danger">旅行</li>
</ul>
</div>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
</body>
</html>
基本的には、Bootstrapのルール通りに、classに値を入れて使うことができます。
<p class="ここにbootstrapの値をいれる">あああああああ</p>
例えば、
それ以外にも色々使いたい場合は、以下のリンクをクリックして、コードをコピーして遊んでみてください。
Bootstrapの使い方