Mihail
Nice but I use firefox more :)
You need to really change the JQuery lines. I am not sure that you need a selector your only changing one node? should be able to just access the style?
The changes needed are line 78
new JQuery(Std.format("#polygon-$index .face")).css("-moz-transform", faceTransform);
new JQuery(Std.format("#polygon-$index")).css("-moz-transform", triangleTransform);
and for Opera try...
new JQuery(Std.format("#polygon-$index .face")).css("-o-transform", faceTransform);
new JQuery(Std.format("#polygon-$index")).css("-o-transform", triangleTransform);
not sure about IE10 it maybe -o as well?
but my approach would be to maybe add a few methods to Divtastic see line 954 for general structure I would need to work out the detail but if you can avoid JQuery and selectors I think potentially you might be able to gain a small speed increase or maybe it would be much slower I am not too sure depends?
Best
Justin
PS on firefox I am seeing some distortion.