Animating PowerSchool Web Pages

Welcome to this web tutorial all about how to use the YUI to animate your pages!

 

Animating Color and Size: Interact

 

Enter in hexadecimal color codes in the two input fields. Just for those of you who can't pull hexadecimal color codes out of your brain, we've included a color picker for you. After you enter in the codes, click the "See it change!" button. When you've had enough fun, go to the next page and test yourself.

var attributes = {

   color: { to: '' },

   backgroundColor: { to: '' }

};

var anim = new YAHOO.util.ColorAnim('demo', attributes);

anim.animate();

Back   Next