madrobby (owner)

Revisions

gist: 86960 Download_button fork
public
Public Clone URL: git://gist.github.com/86960.git
Embed All Files: show embed
JavaScript #
1
2
3
4
5
6
7
s2.fx.Opacity = Class.create(s2.fx.Element, {
  setup: function() {
    var from = this.options.from || 0, to = this.options.to || 1;
    this.element.setStyle('opacity:'+from);
    this.animate('style', this.element, { style: 'opacity:'+to });
  }
});