Skip to content

Instantly share code, notes, and snippets.

@Chrissy
Created July 6, 2011 06:41
Show Gist options
  • Save Chrissy/1066687 to your computer and use it in GitHub Desktop.
Save Chrissy/1066687 to your computer and use it in GitHub Desktop.
Node : function(x,y) {
var t = this
t.el = document.createElementNS("http://www.w3.org/2000/svg", this.shape)
t.el.setAttribute('r', 1)
var changeOP = function() {
t.el.setAttribute('opacity','0.5')
}
var ee = window.setTimeout(changeOP,1000)
this.root.appendChild(t.el)
return this
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment