前提・実現したいこと
Vuejsで画像要素にクラスを後から付与させてCSS効果を後から適用させたいです。
発生している問題・エラーメッセージ
.activeのクラスを画像要素に付与させて、ページを開いたときに画像が除々に大きくなるようにしたいのですが付与させたクラスが即時で適用されるため意図した処理になりません。
該当のソースコード
https://codesandbox.io/s/vue-template-gt8jm
javascript
1ソースコード 2<template> 3 <div id="app"> 4 <img v-bind:class="{ active: test() }" src="./assets/logo.png"> 5 </div> 6</template> 7 8<script> 9 10export default { 11 name: "App", 12 13 methods: { 14 test(){ 15 return true 16 } 17 } 18}; 19</script> 20 21<style> 22#app { 23 font-family: "Avenir", Helvetica, Arial, sans-serif; 24 -webkit-font-smoothing: antialiased; 25 -moz-osx-font-smoothing: grayscale; 26 text-align: center; 27 color: #2c3e50; 28 margin-top: 60px; 29} 30img{ 31 width: 80px; 32 height: 80px; 33 margin: 5px 5px 0 0; 34 border-radius: 5px; 35 transform: scale(0); 36 transition: all .5s ease-in-out; 37 cursor: pointer; 38} 39.active{ 40 opacity: 1; 41 transform: scale(1); 42} 43</style>
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。