2015-01-12 68 views
0

我實際上使用Bootstrap水平代替Offcanvas而崩潰Bootstrap collapse! 。我想覆蓋默認的摺疊動畫並使用此樣式:覆蓋崩潰的動畫引導

div { 
    -webkit-transition: all .5s ease-out; 
    -o-transition: all .5s ease-out; 
    transition: all .5s ease-out; 
} 

在此先感謝您的支持和幫助。

回答

0

你只需要將它附加到collapsing類。例如:

.collapsing { 
    -webkit-transition: all .5s ease-out; 
    -o-transition: all .5s ease-out; 
    transition: all .5s ease-out; 
} 
+0

感謝joshhunt回覆。它似乎只適用於垂直崩潰。我沒有找到如何重寫它,這就是爲什麼我使用bootstrap關閉畫布。 –