Subversion Repositories Applications.papyrus

Compare Revisions

Ignore whitespace Rev 2149 → Rev 2150

/trunk/api/js/dojo1.0/dojo/tests/_base/fx_delay.html
New file
0,0 → 1,22
<html>
<head>
<style type="text/css">
#inner { width: 200px; height: 200px; background-color: #484}
</style>
<script type="text/javascript" src="../../dojo.js"></script>
<script type="text/javascript">
dojo.require("dojo._base.fx");
dojo.require("dojo._base.html");
dojo.addOnLoad(function(){
var box = dojo.byId("box");
dojo.connect(box, "onclick", function(){
dojo.style(box, "opacity", "0");
dojo.fadeIn({node:box, delay:1}).play();
});
});
</script>
</head>
<body>
<div id="box"><button id="inner">click me</button></div>
</body>
</html>