Skip to content

Commit

Permalink
Added Firefox support for CSS3 carousel transition
Browse files Browse the repository at this point in the history
  • Loading branch information
Hayden Bleasel committed Jul 7, 2014
1 parent 4fa2d9e commit d6d8e20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion less/carousel.less
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
}

// WebKit CSS3 transforms for supported devices
@media all and (-webkit-transform-3d) {
@media all and (transform-3d), (-webkit-transform-3d) {
.transition-transform(~'0.6s ease-in-out');
.backface-visibility(~'hidden');
.perspective(1000);
Expand Down

1 comment on commit d6d8e20

@cvrebert
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This doesn't actually seem to work on Firefox.
Example: http://jsbin.com/lewuza/1/edit?html,css,output
(Top square stays red in Firefox)

Please sign in to comment.