You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
795 B
HTML
43 lines
795 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Clippy</title>
|
|
<link rel="stylesheet" type="text/css" href="./clippy.js/build/clippy.css" media="all">
|
|
</head>
|
|
<body>
|
|
<h1>Hello Clippy!</h1>
|
|
|
|
<script src="./jquery.1.7.min.js"></script>
|
|
<script src="./clippy.js/build/clippy.js"></script>
|
|
<script type="text/javascript">
|
|
|
|
|
|
clippy.load('Clippy', function(agent){
|
|
agent.show();
|
|
|
|
//agent.play('Searching');
|
|
|
|
//agent.animate();
|
|
|
|
//agent.animations();
|
|
|
|
//agent.moveTo();
|
|
|
|
//agent.play();
|
|
|
|
agent.speak('Heeeeeeeeey!');
|
|
agent.animate();
|
|
agent.speak('Im Clippy!');
|
|
|
|
//agent.gestureAt(200,200);
|
|
|
|
//agent.stopCurrent();
|
|
|
|
//agent.stop();
|
|
|
|
});
|
|
|
|
</script>
|
|
</body>
|
|
</html> |