Dojo fallbacks for IE9

104 views Asked by At

I need some help with Dojo. The website that I'm working on is build using Dojo. I need to make a fallback for css3 transitions/animations in IE9. It is required to use Dojo not jQuery. So, how can I implement a fallback using Dojo?

This is the css3 property that I have to do the fallback for:

div#mainNav.openSubNav, .openSubNav div#mainNav {
  -webkit-transform: translate(300px, 0);
  -moz-transform: translate(300px, 0);
  -ms-transform: translate(300px, 0);
  -o-transform: translate(300px, 0);
  transform: translate(300px, 0);
}
1

There are 1 answers

4
ben On BEST ANSWER

You should look at http://dojotoolkit.org/reference-guide/1.10/dojo/fx.html

It is all about animations...