I am trying to achieve a logo that spins around on a slight delay after page load. At the moment I am using this code pretty much exactly, however at the moment it works when the user flicks the image, as i said, I just want it to spin on load.

Total newbie at JS, I would do a jsFiddle, but am having trouble to get it to work at all in there. Can anyone help me out?

http://925html.com/files/html5logo/ < Current Code

Thanks, Red

link|improve this question

75% accept rate
here's the fiddle for anyone who wants it jsfiddle.net/ngDcg – Cubed Eye Sep 6 '11 at 23:15
feedback

1 Answer

up vote 1 down vote accepted

Seems you can do this:

YUI().use('transition', function (Y){
                    Y.one('#logo').transition({
                        transform    : 'rotateY(' + 360 + 'deg)',
                        duration    : 2,
                        easing        : 'ease-out'
                    }, function(){
                        this.setStyle('webkitTransform', 'rotateY(0deg)');
                    });

            });

http://jsfiddle.net/HFFDR/

link|improve this answer
Thank you thank you thank you! – Red Sep 6 '11 at 23:44
@Red your welcome :) but honestly I have no clue how this works :P I've never used YUI before. But I am glad this solves your question :) – Joseph Marikle Sep 6 '11 at 23:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.