anim.html revision d0a16c48f3477794c63f4ff3242dc20db6a49295
<html>
<head>
<style>
html, body {
padding:0;
margin:0;
}
.yui3-overlay-content {
background-color:#ccc;
border:1px solid green;
}
</style>
</head>
<body>
<button id="btn" type="button">Toggle</button>
<script>
YUI({filter:"raw"}).use("anim", "widget-anim", "overlay", function(Y) {
var o = new Y.Overlay({
visible:true,
height:"200px",
width:"200px",
xy: [100,100],
bodyContent:"Body",
headerContent:"Header",
footerContent:"Footer",
render:"#constraint"
});
Y.Node.one("#btn").on("click", function() {
});
});
</script>
</body>
</html>