the problem is that you should not use the dash before the property name, because the camelCase function ( http://mootools.net/docs/core/Native/String#String:camelCase) will transform it to MozTransform for example, instead of mozTransform.
-moz-transform becames MozTransform moz-transform becomes mozTransform mozTransform becomes mozTransform (hehe, theres no dash so camelCase() does nothing) So heres a working example, it should work if you just remove the dash from start too. http://mootools.net/shell/S53HG/2/ -- Fábio Miranda Costa Solucione Sistemas Engenheiro de interfaces On Fri, Mar 26, 2010 at 9:10 AM, patcullen <[email protected]> wrote: > Hi, I'm busy putting together some ideas for a webtop, one of the > peripheral features (one of the fun ones to code) is the ability to > alt-tab between windows/forms. > > So far this idea largely rests on the ability for a browser to > implement the CSS3 transform rule. Here's my mooshell example: > http://mootools.net/shell/S53HG/ > > I've only just started and have had many ideas for this plugin; but > don't want to continue if, or until I can figure out this problem... I > cant (even after abusing the core library a bit) get the css3 > transform effect to work while being morphed by mootools. The wierd > thing is that using setStyles directly does apply these CSS3 rules. > > Hopefully if you have a look at the mooshell it will make more sense. > If I can get this working, I hope to buff it up with events, plenty of > options, then stick it on forge. The only other idea I can apply it to > so far is for looking at photos in a gallery. > > // pat > > To unsubscribe from this group, send email to mootools-users+ > unsubscribegooglegroups.com or reply to this email with the words "REMOVE > ME" as the subject. > To unsubscribe from this group, send email to mootools-users+unsubscribegooglegroups.com or reply to this email with the words "REMOVE ME" as the subject.
