<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Vantage Point of Queens &#187; meetup.tweener</title>
	<atom:link href="http://blog.nydd.org/topic/tech/meetup-tweener/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.nydd.org</link>
	<description>Art, Hack and Rock'n Roll</description>
	<lastBuildDate>Wed, 16 Jun 2010 13:59:49 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Meetup.Tweener 000: 簡単なアニメーション</title>
		<link>http://blog.nydd.org/2009/08/meetup-tweener-000-%e7%b0%a1%e5%8d%98%e3%81%aa%e3%82%a2%e3%83%8b%e3%83%a1%e3%83%bc%e3%82%b7%e3%83%a7%e3%83%b3/</link>
		<comments>http://blog.nydd.org/2009/08/meetup-tweener-000-%e7%b0%a1%e5%8d%98%e3%81%aa%e3%82%a2%e3%83%8b%e3%83%a1%e3%83%bc%e3%82%b7%e3%83%a7%e3%83%b3/#comments</comments>
		<pubDate>Mon, 24 Aug 2009 05:15:54 +0000</pubDate>
		<dc:creator>beatak</dc:creator>
				<category><![CDATA[meetup.tweener]]></category>
		<category><![CDATA[japanese]]></category>

		<guid isPermaLink="false">http://blog.nydd.org/?p=275</guid>
		<description><![CDATA[				
				まずは非常に簡単なアニメーションをやってみましょう。Wireframe の Cube をクリックしてみてください。ジャンプ先のページでも見られますが、このアニメーションは以下のコードで実現されています。
				Meetup.Tweener.isUsing = 'jQuery'; // The Magic spell of using Tweener with jQuery
$(function(){ // jQuery way of DOM Ready
  var cube = document.getElementById('cube');
  $(cube).click(function(){
    Meetup.Tweener.addTween(
      cube,  // 1st arg: the target element
      {'left': '100%'} // 2nd arg: [...]]]></description>
			<content:encoded><![CDATA[				<p><a href="http://archive.nydd.org/meetup.tweener/helloworld/000/" title="Hello world to Meetup.Tweener: Easy animation by beatak, on Flickr"><img src="http://farm3.static.flickr.com/2438/3850768445_d2b5149de0.jpg" width="500" height="386" alt="Hello world to Meetup.Tweener: Easy animation" /></a></p>
				<p>まずは非常に簡単なアニメーションをやってみましょう。Wireframe の Cube をクリックしてみてください。ジャンプ先のページでも見られますが、このアニメーションは以下のコードで実現されています。</p>
				<pre><code class="prettyprint">Meetup.Tweener.isUsing = 'jQuery'; // The Magic spell of using Tweener with jQuery
$(function(){ // jQuery way of DOM Ready
  var cube = document.getElementById('cube');
  $(cube).click(function(){
    Meetup.Tweener.addTween(
      cube,  // 1st arg: the target element
      {'left': '100%'} // 2nd arg: animation property
    );
  });
});</code></pre>
				<p>ご覧の通り、Meetup.Tweener は AS3 Tweener と全く同じ、Tweener.addTween というメソッドの呼び出しで始まります。詳しい内容は次回以降お楽しみに、ということで。</p>
				<p><a href="http://www.flickr.com/photos/beatak/3850768445/" title="Hello world to Meetup.Tweener: Easy animation by beatak, on Flickr">Flickr: Hello world to Meetup.Tweener: Easy animation</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.nydd.org/2009/08/meetup-tweener-000-%e7%b0%a1%e5%8d%98%e3%81%aa%e3%82%a2%e3%83%8b%e3%83%a1%e3%83%bc%e3%82%b7%e3%83%a7%e3%83%b3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hello World to Meetup.Tweener</title>
		<link>http://blog.nydd.org/2009/08/hello-world-to-meetup-tweener-ja/</link>
		<comments>http://blog.nydd.org/2009/08/hello-world-to-meetup-tweener-ja/#comments</comments>
		<pubDate>Mon, 24 Aug 2009 05:04:38 +0000</pubDate>
		<dc:creator>beatak</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[meetup.tweener]]></category>
		<category><![CDATA[japanese]]></category>

		<guid isPermaLink="false">http://blog.nydd.org/?p=271</guid>
		<description><![CDATA[				今更、Hello World, という感じでもないんですが、Meetup.Tweener の解説記事を書いていこうと思います。
				Meetup.Tweener は僕が Open Source として開発している JavaScript のライブラリで、HTML + JavaScript の環境で非常に簡単にアニメーションを作ることができます。もし Flash での開発経験があれば、Tweener という Library は絶対聞いたことがあると思うのですが、Original の Tweener と API 互換性を持たせつつ、JavaScript 用に最適化をしています。
				今やどのメジャー JavaScript ライブラリもアニメーション機能があるというのになんでいまさらアニメーションライブラリ？と思われるかもしれません。Meetup.Tweener の利点は
				
				依存性は低く、（理論上では）どのメジャーライブラリとも共存できる
				長い間 Flash で培われた API
				Meetup での実用実績
				
				(1) に関して、今のところ対応しているのは jQuery と MochiKit だけなんですが、Prototype.js, MooTools, YUI, Dojo には対応する準備があります。(2) に関して、HTML5 が台頭してくるにあたって、多くの Flash 製作者が JavaScript に流れてくることが予想されます（楽観的）。彼らにとってなれしたしんできた syntax が使えるのはとても大きな資産になることでしょう。また、アニメーションをメジャーライブラリに頼らないことで、突然のコードベース変更にも強いでしょう。
				このライブラリは Google Adplanner によれば 6M の Unique Visitor [...]]]></description>
			<content:encoded><![CDATA[				<p>今更、Hello World, という感じでもないんですが、<a href="http://github.com/beatak/meetup.tweener/">Meetup.Tweener</a> の解説記事を書いていこうと思います。</p>
				<p>Meetup.Tweener は僕が Open Source として開発している JavaScript のライブラリで、HTML + JavaScript の環境で非常に簡単にアニメーションを作ることができます。もし Flash での開発経験があれば、<a href="http://code.google.com/p/tweener/">Tweener</a> という Library は絶対聞いたことがあると思うのですが、Original の Tweener と API 互換性を持たせつつ、JavaScript 用に最適化をしています。</p>
				<p>今やどのメジャー JavaScript ライブラリもアニメーション機能があるというのになんでいまさらアニメーションライブラリ？と思われるかもしれません。Meetup.Tweener の利点は</p>
				<ol>
				<li>依存性は低く、（理論上では）どのメジャーライブラリとも共存できる</li>
				<li>長い間 Flash で培われた API</li>
				<li>Meetup での実用実績</li>
				</ol>
				<p>(1) に関して、今のところ対応しているのは jQuery と MochiKit だけなんですが、Prototype.js, MooTools, YUI, Dojo には対応する準備があります。(2) に関して、HTML5 が台頭してくるにあたって、多くの Flash 製作者が JavaScript に流れてくることが予想されます（楽観的）。彼らにとってなれしたしんできた syntax が使えるのはとても大きな資産になることでしょう。また、アニメーションをメジャーライブラリに頼らないことで、突然のコードベース変更にも強いでしょう。</p>
				<p>このライブラリは <a href="https://www.google.com/adplanner/planning/site_profile#siteDetails?identifier=meetup.com&#038;lp=true">Google Adplanner によれば 6M の Unique Visitor をほこる Meetup.com</a> で運用の実績があります。実地で使われているものですから、問題があれば対処は素早く行われます。</p>
				<p>開発は <a href="http://github.com/beatak/meetup.tweener/">Github 上の meetup.tweener</a> レポジトリにて行われていて、<a href="http://beatak.github.com/meetup.tweener/">ドキュメントも Github 上</a>にあります。</p>
				<p>開発にあたって、Yuichi Tateno (id:secondlife) さんの <a href="http://hotchpotch.github.com/javascripts/JSTweener.js">JSTweener</a> を参考にさせていただきました。ありがとうございます。</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.nydd.org/2009/08/hello-world-to-meetup-tweener-ja/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
