rect.animate(3000).move(100, 100).during(function(pos, morph) {
/* numeric values */
- circle.size(morph(100, 200), morph(100, 50))
+ ellipse.size(morph(100, 200), morph(100, 50))
/* unit strings */
- circle.attr('cx', morph('20%', '80%'))
+ ellipse.attr('cx', morph('20%', '80%'))
/* hex color strings */
- circle.fill(morph('#333', '#ff0066'))
+ ellipse.fill(morph('#333', '#ff0066'))
})
```