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

ユーザビリティなフォームの作成②

Last updated at Posted at 2021-10-12

前回の続き

から実装した方がわかりやすいかもしれません。
今回は、

STEP1 フォームにフォーカスしたらボタンを表示

STEP2 フォームに文字を入力したらボタンの色を変化させたいと思います。

完成例

入力前

入力前.png

STEP1 フォーカス後

ユーザビリティ後.png

STEP2 入力後

ユーザビリティボタン.png

このように、フォーカスしたらボタンを表示して、
入力されたらボタンの色をグレーから緑に変えたいと思います。

STEP1

ボタンの設定

v-ifで条件分岐し、isEditing か titleExistsのどちらかがtrueの時だけボタンを表示します。

<button type="submit"
        class="add-button"
        v-if="isEditing || titleExists">
  Add
</button>

CSSの設定

.addable .add-button {
  background-color: #00d78f;
  pointer-events: auto;
  cursor: pointer;
}

STEP2

data: function() {
  return {
    title: '',
    isEditing: false,
  }
},
computed: {
  classList() {
    const classList = ['addlist']

    if (this.isEditing) {
      classList.push('active')
    }
    // 2. cssを追加し、動的にボタンの色を変える
    if (this.titleExists) {
      classList.push('addable')
    }
    return classList
  },
 // 1. 文字が入力されたら、titleExistsがtrueになる
  titleExists() {
    return this.title.length > 0
  }
}

動的に変わる流れ

①文字が入力されたら、titleExistsがtrueになる
②trueになったことでcomputedのif文を実行して、cssを追加して動的にボタンの色を変える

これで文字を入力したら、ボタンの色が動的に変わると思います!!

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?