You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've found that Carousel function doesn't work well in webkit explorers, like Chrome, Safari and etc. And I've checked the CSS codes, and found that some supporting lines are omitted, comparing to the original Bootstrap CSS file, like:
Under @media all and (transform-3d), (-webkit-transform-3d)
Class .carousel-inner > .item misses
"-webkit-transition: -webkit-transform .6s ease-in-out;
-o-transition: -o-transform .6s ease-in-out;
-webkit-backface-visibility: hidden;
-webkit-perspective: 1000;"
Such kind of issue also happens to other classes. After added them up into your CSS file, Carousel works well now.
The text was updated successfully, but these errors were encountered:
Thanks. Bootstrap is apparently phasing in the use of Autoprefixer (twbs/bootstrap#14937), starting with carousels. It wasn't added to the Bootswatch build process yet. Fix on the way.
Hi,
I've found that Carousel function doesn't work well in webkit explorers, like Chrome, Safari and etc. And I've checked the CSS codes, and found that some supporting lines are omitted, comparing to the original Bootstrap CSS file, like:
Under @media all and (transform-3d), (-webkit-transform-3d)
Class .carousel-inner > .item misses
"-webkit-transition: -webkit-transform .6s ease-in-out;
-o-transition: -o-transform .6s ease-in-out;
-webkit-backface-visibility: hidden;
-webkit-perspective: 1000;"
Such kind of issue also happens to other classes. After added them up into your CSS file, Carousel works well now.
The text was updated successfully, but these errors were encountered: