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

フロントのすゝめ ver1.0

Posted at

ABEJA Advent Calendarの6日目です。
5日目はこちら

:sunny:ご挨拶:sunny:

おはござおはござー!(・ヮ・🌻)
いやーついにこの季節になりましたね。
だんだん寒くなり、風邪を引く季節になってきましたね。
お体には十分気をつけてください。
関係ないですが私は今年もクリスマスはぼっちです。

私はフロントエンドエンジニアとして活動をしてから早2年ぐらい経ちました。
最近はサークルに後輩も入りさらに活気づいた感じがします。

今回なのですが、
「webページを作ってみたい。」
「どんな風に作ってるの?」
「フロントわからない(にゃ〜ん)」
「美少女になりたい」
といろいろな意見をいただいたので、自分がやっている時にどんな手順でやっているのかを
簡単ではありますが、ご紹介させていただきたいと思います。

※今回は優しさMAXで行きますので、JSはanimationでのみになっています。API等の扱い方も説明だけしていこうと思いますので。気になる人は見ていってくダッシ。

:shamrock:環境:shamrock:

macOS Catalina ver 10.15.1
Node v13.0.0

今回作成する物のデザイン
スクリーンショット 2019-12-05 19.32.15.png

今回はNuxt.jsでやっていきます。
インストール方法はこちら
私は yarn create nuxt-app でやってます。

全てEnterで大丈夫です。

create-nuxt-app v2.12.0
✨  Generating Nuxt.js project in hogehoge
? Project name hogehoge
? Project description My stellar Nuxt.js project
? Author name MokeeeMokeee
? Choose the package manager Yarn
? Choose UI framework None
? Choose custom server framework None (Recommended)
? Choose Nuxt.js modules (Press <space> to select, <a> to toggle all, <i> to invert selection)
? Choose linting tools (Press <space> to select, <a> to toggle all, <i> to invert selection)
? Choose test framework None
? Choose rendering mode Universal (SSR)
? Choose development tools (Press <space> to select, <a> to toggle all, <i> to invert selection)

directory 構造

.
├── README.md
├── assets
│   └── README.md
├── components
│   ├── Logo.vue
│   └── README.md
├── layouts
│   ├── README.md
│   └── default.vue
├── middleware
│   └── README.md
├── node_modules
├── nuxt.config.js
├── package.json
├── pages
│   ├── README.md
│   └── index.vue
├── plugins
│   └── README.md
├── static
│   ├── README.md
│   └── favicon.ico
├── store
│   └── README.md
└── yarn.lock

説明の最後にコードを載せておきます。

1. 大枠を決めよう。:pick:

まず、divで囲めそうな所を探していきましょう。
大まかに囲めれば最初は構いません。
今回のデザインで言うと私だとこんな感じになります。
スクリーンショット 2019-12-05 19.43.55.png

skillの所は、同じものが続いているので、v-forなどで回した方がいいと言うことがわかります。
このようにまずどんな感じになるかをイメージをして、やっていきましょう。

コードだとこんな感じ。

index.vue
<template>
  <div>
    <profile />
    <skills />
  </div>
</template>

<script>
import profile from "~/components/profile.vue"
import skills from "~/components/skills.vue"

export default {
  components:{
    profile,
    skills
  }
}
</script>
    


profile.vue
<template>
  <div >
    <div >
      <!-- タイトル -->
    </div>
    <div>
      <div>
        <!-- 左profile画像 -->
      </div>
      <div>
        <!-- 右の文言らへん -->
      </div>
    </div>
  </div>
</template>
skills.vue
<template>
  <div>
    <div>
      <!-- skillsタイトル -->
    </div>
    <div>
      <!-- skill一覧がある所 v-forで回すので今はこのまま -->
    </div>
  </div>
</template>

2. 内容を書いていく。:coffee:

profileの方から仕上げていこうと思います。
profileのタイトルには、文言の他に画像が左についています。それも頭に入れたまま書きましょう。
profileの右の方には、名前と職業と説明文があります。これも三つに分かれていることをイメージしといてください。
まずはそれを踏まえて、書いていきましょう。
タイトルの部分はh2タグで、名前のところはh3タグでそれ以外はとりあえずpで書いときましょう。

※タイトルの左のiconは ~/assets/images/icons/に入れてます。profile画像は、~/assets/imagesに入れてます。

profile.vue
<template>
  <div>
    <div>
      <!-- 画像は好きなのをお使いくださいSVGで予め大きさを合うものを持ってきてます -->
      <img src="~/assets/images/icons/perm_identity.svg" />
      <h2>Profile</h2>
    </div>
    <div>
      <div>
        <img
          src="~/assets/images/coffee-4648041__480.jpg"
        />
      </div>
      <div>
        <h3>moke</h3>
        <p>FrontEnd Engineer || Pizzzzaエンジニア</p>
        <p>
          私は専門学校に行きながらFrontEnd Engineerをやらせていただいてますですが自分はただのエンジニアでは無くpizzaですむしろ僕がpizzaです)
          なぜpizzaなのかだって
          <br />それは将来大切な人たちを助けるためですよ(支離滅裂
          <br />俺が食べ過ぎなんじゃなくて
          <br />ピザが美味しいのが罪なんだ
          <br />
        </p>
      </div>
    </div>
  </div>
</template>

画面ではこんな感じになっているかと思います。
スクリーンショット 2019-12-05 20.08.54.png

3. flexBoxを使って綺麗に並べていきましょう。:pencil2:

ここからはみなさんお待ちかねの、flexBoxのお時間です。
ここからだいぶ作ってるなぁって感じが出てきます。

flexBoxのチート表はこちら

まずタイトルの方からやりましょう。
タイトルはiconが左に、タイトル名画右側にあるので囲んでいるdivにdisplay: flexを書いてあげれば綺麗に並びます。
profileの画像と文言も左右に並んでるので display: flexを書いて並べてあげましょう。

profile.vue
<template>
  <div>
    <div class="profileTitleBox">
      <!-- 画像は好きなのをお使いくださいSVGで予め大きさを合うものを持ってきてます -->
      <img src="~/assets/images/icons/perm_identity.svg" />
      <h2>Profile</h2>
    </div>
    <div class="profileContentBox">
      <div>
        <img
          src="~/assets/images/coffee-4648041__480.jpg"
        />
      </div>
      <div>
        <h3>moke</h3>
        <p>FrontEnd Engineer || Pizzzzaエンジニア</p>
        <p>
          私は専門学校に行きながらFrontEnd Engineerをやらせていただいてますですが自分はただのエンジニアでは無くpizzaですむしろ僕がpizzaです)
          なぜpizzaなのかだって
          <br />それは将来大切な人たちを助けるためですよ(支離滅裂
          <br />俺が食べ過ぎなんじゃなくて
          <br />ピザが美味しいのが罪なんだ
          <br />
        </p>
      </div>
    </div>
  </div>
</template>


<style lang="scss" scoped>
.profile {
  &Title{
    &Box{
      display: flex;
    }
  }
  &Content{
    &Box{
      display: flex;
    }
  }

}
</style>

スクリーンショット 2019-12-06 9.51.53.png

4. 内容の細かいCSSを書いていこう。:ramen:

flexBox以外の文字の大きさや画像の調整とかを行いましょう。
文字の大きさは、あとで使いまわせるといいので、どこでも読み込めるように ~/assets/scss/foundation_main.scssと名前をつけてよく使うものはの中に入れてあげましょう。

どこでも使えるscssを作成するために、@nuxtjs/style-resourcesを使います。
また、nuxt.config.jsに設定をしてあげましょう。

zsh
$yarn add @nuxtjs/style-resources
nuxt.config.js
export default {

  ~~色々書いてある~~  

  modules: [
    "@nuxtjs/style-resources"
  ],
  styleResources: {
    scss: [
      "~/assets/scss/foundation/_main.scss",
    ]
  }

  ~~色々書いてある~~ 

}

よく使っているscssはこちらになります.

_main.scss
//font style//
$en_font-family: "Roboto";
// $ja_font-family: 'Noto Sans JP';
$ja_font-family: source-han-sans-japanese;
$font-color: #102a3a;

//Color//
$white: #ffffff;
$background: #f3f4f3;
$boundary: rgba(26, 36, 31, 0.1);
$white_boundary: rgba(255, 255, 255, 0.12);
$dark: #1a241f;
$black: #2e3734;
$gray: #a1aaa9;
$white_gray: #f2f3f2;
$dark_green: #0a5845;
$green: #058b63;
$light_green: #049f8d;
$orange: #e95136;
$link_blue: #0a47a3;
$alert_red: #dc0d3f;

//shadow//
$shadow_layer1: 0px 1px 28px rgba(16, 42, 58, 0.1),
  0px 2px 15px rgba(16, 42, 58, 0.15);
$shadow_layer2: 0px 1px 18px rgba(16, 42, 58, 0.17),
  0px 2px 8px rgba(16, 42, 58, 0.14);
$shadow_layer3: 0px 0px 13px rgba(16, 42, 58, 0.13),
  0px 1px 7px rgba(16, 42, 58, 0.17);

//English!!!!//
.en_display_main {
  font-family: $en_font-family;
  font-weight: 900;
  line-height: 56px;
  font-size: 56px;
  letter-spacing: 0.12px;
  color: $font-color;
}

.en_display_secondary {
  font-family: $en_font-family;
  font-style: normal;
  font-weight: 900;
  line-height: 48px;
  font-size: 45px;
  letter-spacing: 0.4px;
  color: $font-color;
}

.en_display_tertiary {
  font-family: $en_font-family;
  font-style: normal;
  font-weight: 900;
  line-height: 40px;
  font-size: 34px;
  letter-spacing: 0.6px;
  color: $font-color;
}

.en_headline {
  font-family: $en_font-family;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  font-size: 24px;
  color: $font-color;
}

.en_title {
  font-family: $en_font-family;
  font-style: normal;
  font-weight: bold;
  line-height: 32px;
  font-size: 20px;
  letter-spacing: 0.5px;
  color: $font-color;
}

.en_button {
  font-family: $en_font-family;
  font-style: normal;
  font-weight: bold;
  line-height: 24px;
  font-size: 14px;
  letter-spacing: 0.16px;
  text-transform: uppercase;
  color: $font-color;
}

.en_body_main {
  font-family: $en_font-family;
  font-style: normal;
  font-weight: bold;
  line-height: 24px;
  font-size: 14px;
  letter-spacing: 0.16px;
  color: $font-color;
}

.en_body_secondary {
  font-family: $en_font-family;
  font-style: normal;
  font-weight: normal;
  line-height: 20px;
  font-size: 14px;
  letter-spacing: 0.16px;
  color: $font-color;
}

.en_caption {
  font-family: $en_font-family;
  font-weight: normal;
  line-height: 20px;
  font-size: 12px;
  letter-spacing: 0.32px;
  color: $font-color;
}

.en_subheding {
  font-family: $en_font-family;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  font-size: 15px;
  letter-spacing: 0.16px;
  color: $font-color;
}

//Japan!!!!//
.ja_display_main {
  font-family: $en_font-family, $ja_font-family;
  line-height: 56px;
  font-size: 56px;
  letter-spacing: 0.08px;
  color: $font-color;
}

.ja_display_secondary {
  font-family: $en_font-family, $ja_font-family;
  line-height: 48px;
  font-size: 45px;
  color: $font-color;
}

.ja_display_tertiary {
  font-family: $en_font-family, $ja_font-family;
  line-height: 40px;
  font-size: 34px;
  color: $font-color;
}

.ja_headline {
  font-family: $en_font-family, $ja_font-family;
  line-height: 32px;
  font-size: 24px;
  color: $font-color;
}

.ja_title {
  font-family: $en_font-family, $ja_font-family;
  line-height: 32px;
  font-size: 20px;
  letter-spacing: 0.5px;
  color: $font-color;
}

.ja_subheading {
  font-family: $en_font-family, $ja_font-family;
  line-height: 24px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.16px;
  color: $font-color;
}

.ja_headline {
  font-family: $en_font-family, $ja_font-family;
  line-height: 32px;
  font-size: 24px;
  color: $font-color;
}

.ja_title {
  font-family: $en_font-family, $ja_font-family;
  line-height: 32px;
  font-size: 20px;
  letter-spacing: 0.5px;
  color: $font-color;
}

.ja_button {
  font-family: $en_font-family, $ja_font-family;
  line-height: 24px;
  font-size: 14px;
  letter-spacing: 0.16px;
  text-transform: uppercase;
  color: $font-color;
}

.ja_body_main {
  font-family: $en_font-family, $ja_font-family;
  line-height: 24px;
  font-size: 14px;
  letter-spacing: 0.16px;
  color: $font-color;
}

.ja_body_secondary {
  font-family: $en_font-family, $ja_font-family;
  line-height: 20px;
  font-size: 14px;
  letter-spacing: 0.16px;
  color: $font-color;
}

.ja_caption {
  font-family: $en_font-family, $ja_font-family;
  line-height: 20px;
  font-size: 12px;
  letter-spacing: 0.32px;
  color: $font-color;
}

.ja_subheading {
  font-family: $en_font-family, $ja_font-family;
  line-height: 24px;
  font-size: 15px;
  letter-spacing: 0.16px;
  color: $font-color;
}

.ja_text {
  font-family: $en_font-family, $ja_font-family;
  font-weight: bold;
  font-size: 18px;
  line-height: 26px;
}

.main_title {
  font-family: $en_font-family, $ja_font-family;
  font-weight: bold;
  font-size: 52px;
  line-height: 75px;
}

a {
  text-decoration: none !important;
  text-decoration: none !important;
}

* {
  &::-webkit-scrollbar {
    display: none;
  }
}

body {
  font-family: $en_font-family, $ja_font-family;
}

profile.vueは最終的にはこんな感じになるかと思います。

profile.vue
<template>
  <div>
    <div class="profileTitleBox">
      <!-- 画像は好きなのをお使いくださいSVGで予め大きさを合うものを持ってきてます -->
      <img src="~/assets/images/icons/perm_identity.svg" />
      <h2 class="main_title" style="margin: 0 0 0 8px;">Profile</h2>
    </div>
    <div class="profileContentBox">
      <div class="profileImageBox">
        <img class="profileImage" src="~/assets/images/coffee-4648041__480.jpg" />
      </div>
      <div class="profileTextBox">
        <h3 class="ja_display_secondary profileTextName">moke</h3>
        <p class="profileTextJob ja_headline">FrontEnd Engineer || Pizzzzaエンジニア</p>
        <p class="profileText ja_text">
          私は専門学校に行きながらFrontEnd Engineerをやらせていただいてます
          ですが自分はただのエンジニアでは無くpizzaですむしろ僕がpizzaです)
          なぜpizzaなのかだって
          <br />それは将来大切な人たちを助けるためですよ(支離滅裂
          <br />俺が食べ過ぎなんじゃなくて
          <br />ピザが美味しいのが罪なんだ
          <br />
        </p>
      </div>
    </div>
  </div>
</template>


<style lang="scss" scoped>
.profile {
  &Title {
    &Box {
      display: flex;
      justify-content: center;
    }
  }
  &Content {
    &Box {
      @media screen and (min-width: 767px) {
        display: flex;
        flex-wrap: nowrap;
      }
      margin: 56px 0;
      padding: 0 16px;
    }
  }
  &Image {
    @media screen and (min-width: 767px) {
      min-height: 260px;
      min-width: 260px;
    }
    width: 100%;
    border-radius: 90px;
    &Box {
      min-width: 260px;
    }
  }
  &Text {
    line-height: 26px;
    &Box {
      @media screen and (min-width: 767px) {
        padding: 0 0 0 48px;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
      }
    }
    &Job {
      margin: 24px 0;
    }
    &Name{
      @media screen and (max-width: 768px) {
        text-align: center;
        margin: 24px;
      }
    }
  }
}
</style>

5. :bow_tone1::bow_tone1::bow_tone1::bow_tone1::bow_tone1::bow_tone1:ごめん:bow_tone1::bow_tone1::bow_tone1::bow_tone1::bow_tone1::bow_tone1:

これめっちゃ長いので、下の部分は別の日のアドベントカレンダーにします。
???「すまん○」 //某Vtuberが言っちゃったやつ。

とりあえず今回でProfile出来ましたね。
(cssクソなのは見逃してくれ...ベストプラクティスわかる方コメントで書いてくれるとありがたいっす)

とりあえず次回を楽しみに!!!

次回はこちら =>

3
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
3
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?