アニメーション開始位置を指定する

書式

new YUIobj.Anim({
from : { xy: [ X座標, Y座標 ]}
});

YUIobj : YUIオブジェクト

説明

アニメーション開始位置を指定するにはAnim()メソッドのコンフィグオプションのfromに開始座標を指定します。

サンプルコード [実行]

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<title>Sample</title>
<link rel="stylesheet" href="css/yui.css" type="text/css" media="all">
<link rel="stylesheet" href="css/main.css" type="text/css" media="all">
<script type="text/javascript" src="../../../lib/yui/yui.js"></script>
<script type="text/javascript"><!--
function startAnime(){
YUI().use('anim', function(Y){
var anim = new Y.Anim({
node: '#box',
from : { xy: [10, 10] },
to : { xy:[ Math.random()*500+50, Math.random()*400+50 ] }
});
anim.run();
});
}
// --></script>
</head>
<body class="yui-skin-sam">
<h1>アニメーション開始位置を指定</h1>
<form>
<input type="button" value="開始" onClick="startAnime()">
</form>
<div id="box">
ここが移動します。
</div>
</body>
</html>