0
2

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 3 years have passed since last update.

bulmaで、レスポンシブルかつ最低限必要なページを作成する

Last updated at Posted at 2021-08-10

#動機
webアプリに必要なビデオやジャイロを許可する前段階のタイトル画面が必要になり
簡単に作る方法を探していたところ、bulma.cssが見つかりました。
cssだけで作られているので、学習コストが低くそうなので使ってみました。

#最低限必要な項目
タイトル
概要
スタートボタン
問合せ

#テンプレート
https://bulmatemplates.github.io/bulma-templates/templates/hello-parallax.html 
を文言等を適宜変え

#スクリプト
問合せは、formタグとname属性つければ送信できます

hello-parallax.html
<form method="POST" action="/sendmail.php" id="mailform">
<div class="column is-6">
 <div class="field">
              <label class="label">Email</label>
              <div class="control">
                <input id="email"  name="email" class="input is-medium" type="email" >
              </div>
            </div>
</div>

    <div class="field">
              <label class="label">内容</label>
              <div class="control">
                <textarea id="mailbody" name="body" class="textarea" placeholder=""></textarea>
              </div>
            </div>
           
            <br>
            <div class="field is-grouped">
              <div class="control">
                <button id="submit" class="button is-white is-rounded is-outlined">Submit</button>
              </div>
            </div>
          </div>
 </form>

#ウインドウ幅を狭くすると、問合せのマージンがなくなってしまったので対処

hello-parallax.css
body {
  background: rgb(48, 48, 48);
}

.cta {
  height: 800px;
  border-top: 10px solid rgb(48, 48, 48);
  margin-left: 25px;
  margin-right: 25px;
}

gif

つづき
https://qiita.com/im02kai/items/4a7e4f974b65a0af171d

0
2
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
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?