我想動態顯示其內容動態變化的轉換尺寸(signupForm
)。動畫尺寸未知大小的轉換
每個步驟中容器div的大小是未知的。
我寧願在CSS中這樣做。
我正在使用Vue.js換出窗體。
<div class="signupForm">
<component id="currentView">
<FormOne></FormOne>
<FormTwo></FormTwo>
<FormThree></FormThree>
<FormFour></FormFour>
<FormFive></FormFive>
</component>
</div>
#signupForm
從未離開,但FormOne
被換成FormTwo
等
我已經添加了以下內容:
.signupForm {
max-height:inherit;
display:inline-block;
transition: max-height 0.3s ease-in-out;
}
但過渡性質並沒有多大幫助。有任何想法嗎?
我使用Vue.js – softcode
我掙扎放在一起用VueJS工作的例子(我沒有用它之前)。我期待使用轉換功能 - vuejs.org/v2/guide/transitions.html。我不認爲你實際上需要製作註冊表單的高度,而是要顯示/隱藏表單的高度。看到這個例子:https://jsbin.com/pinowoxufa/1/edit?html,css,output – fubar