This commit is contained in:
Éric Lemoine
2013-02-20 10:38:25 +01:00
parent 17c3936ab6
commit 5d14b9e2d4
1919 changed files with 559755 additions and 2588 deletions

View 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>