問題描述
如何在引導程序 4 中為 col 調整大小設置動畫? (How to animate col resize in bootstrap 4?)
p>在這我怎麼能動畫從 col‑sm‑12 到 col‑sm‑8 的列寬變化?我會做一些事情,比如隱藏的列會通過拉伸它或任何其他花哨的動畫來推動另一個……</p>
參考解法
方法 1:
I think the transition css property should do the thing, but I am not sure. Try to set: div[class*="col‑"] { transition: .3s ease; }
and let me know.
(by NiceToMytyuk、jozpac)