Pete Higgins of Dojo has created a nice example, dojo.workers, that puts together coverflow with Dijit and some dojo.query animations.
He even takes out his frustrations with IE 6 as he creates a branch that looks like this
JAVASCRIPT:
-
var newp = function(){
-
// IE6 branch of this demo
-
window.location.href = “http://” +
-
(confirm(“Is it 2008?”) ?
-
“webkit.org” : “mozilla.org”) +
-
“/”;
-
}
-
// setup our branch launch:
-
dojo.addOnLoad((dojo.isIE && dojo.isIE <7 ? newp : init));
