Debuginfo

思考とアウトプット

Bootstrap3でモバイル時のnav pull down menuを早くする

Responsiveで出てくるハンバーガーメニューの動きです。 これ微妙に遅くてもっさり感があるので、app/styles/main.scssで上書きした。(main.cssでも同じ)

# vi app/styles/main.scss  
// Speed up nav dropdown in mobile
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.15s ease; // originally this is 0.35s
          transition: height 0.15s ease; // originally this is 0.35s
}