This page needs Javascript to work.

Create an element

/* The 'panel' class sets width and height.
   The 'red' class sets border and background color. */
$dom.select(".result")
  .empty()
  .append($dom.create('div.panel.red'));

Animate

// "square" is the red squared absolute-positioned div
$dom.Get(".result")
  .descendants("> .square")
  .transform({ left: "150px", opacity: 0.2 });