Updated
This commit is contained in:
22
master/examples/fx_delay.html
Normal file
22
master/examples/fx_delay.html
Normal 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>
|
||||
Reference in New Issue
Block a user