I\'ve had the fade transition working in a Bootstrap 3 build for a while now, but I just changed the call from a locally held copy of bootstrap.min.css (Bootstrap v3.1.1) to
I faced the same problem and I think I have a solution for what you need. In 3.3 they added CSS transforms to improve carousel performance in modern browsers so you need to override some styles. Tell me if it worked for you. :)
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
My solution here: http://codepen.io/transportedman/pen/NPWRGq?editors=110