Skip to content

Instantly share code, notes, and snippets.

@sorrycc
Last active August 29, 2015 13:58
Show Gist options
  • Save sorrycc/9950572 to your computer and use it in GitHub Desktop.
Save sorrycc/9950572 to your computer and use it in GitHub Desktop.
anima widget basic template.
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>test delegate</title>
</head>
<body>
<script src="https://a.alipayobjects.com/seajs/seajs/2.2.0/sea.js"></script>
<script>
seajs.config({
base: "http://yuan.alipay.im/assets/",
alias: {
"widget": "anima/widget/2.0.0/widget",
"widget-debug": "anima/widget/2.0.0/widget-debug"
}
});
seajs.use("widget-debug", function(Widget) {
document.write("<pre>" + Widget.toString() + "</pre>");
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment