6
5

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

[Vue.js メモ]条件に応じてトランジション変更したい場合

Last updated at Posted at 2018-12-22

条件に応じてトランジションを変更する

テンプレートでtransitionコンポーネントをつかうとき、
ある条件のときは、左から右に、
ある条件のときは 右から左に のように条件・状態に応じてアニメーションを変更したいときには以下のように固定的に指定するのではなく、

<transition name="slide">

transitionv-bindを使って、条件に応じて設定する、というやり方。
ここでは条件判定は三項演算子でやった。

  • msg.humanプロパティには、trueかfalseが格納されているとする
<transition v-bind:name="msg.human? 'slide-fade-l2r':'slide-fade-r2l'">
省略形
<transition :name="msg.human? 'slide-fade-l2r':'slide-fade-r2l'">
  • トランジション用CSS
左から右に登場するトランジション
.slide-fade-l2r-enter-active {
    transition: all .3s ease;
}
.slide-fade-l2r-enter,
.slide-fade-l2r-leave-to {
    opacity: 0;
    transform: translateX(10px);
}
右から左に登場するトランジション
.slide-fade-r2l-enter-active {
    transition: all .3s ease;
}
.slide-fade-r2l-enter,
.slide-fade-r2l-leave-to {
    opacity: 0;
    transform: translateX(-10px);
}

参考

6
5
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
6
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?