【info】いつもいろいろなテストなどをページ内のあちこちでやっているので、重かったり、壊れていたりするf^^;ことも多いです。実験用ですので、カオス(混沌)をあえて意図したりもしますので、標準やValidとは無縁だったりしますが、何卒、ご了承ください ( _ _ b


450 のバグフィックスと、8つのベータから卒業したコンポーネント、290超のサンプルなど。
YUI
http://developer.yahoo.com/yui/
YUI 2.6.0 Released
http://yuiblog.com/blog/2008/10/01/yui-260/

PacMan!
http://www.digitalinsane.com/api/yahoo/pacman/
Another YUI-based Game from Kris Cieslak: Pacman
http://yuiblog.com/blog/2008/09/02/cieslak-pacman/
MacProだと、なんか異様に速くて難しいゲームに・・・
何となく暴走パックマン(笑)
setIntervalのspeedが90とか80になってるせい? かなぁ、、、?
GameWebが懐かしい、、、<って、今はメンテナンスをしていないですが、自動で ( 高橋ロボが働いて ) 動作はするので今でも新規登録はあるんですよね。
Yahoo! Search for the iPhone
http://search.yahoo.com/i
Optimizing Yahoo! Search for the iPhone
http://yuiblog.com/blog/2008/08/28/ysearch-for-iphone/
YUIによるインクリメントサーチになっています。かなりがんばって最適化したらしいです。このあたりの姿勢はYahoo!の良さかなぁ。
YUI 3.x Preview Release 1
http://developer.yahoo.com/yui/3/
Official YUI Examples
http://developer.yahoo.com/yui/3/examples/
http://yuiblog.com/blog/2008/08/13/yui3pr1/
YUI().use()かぁ。セレクタも充実しそう。
Draggable Portal Example
http://developer.yahoo.com/yui/3/examples/dd/portal-drag_source.html
YUI AccordionView widget
http://www.i-marco.nl/weblog/yui-accordion/
AccordionView Widget for YUI from Marco van Hylckama Vlieg
July 25, 2008
http://yuiblog.com/blog/2008/07/25/accordionview/
<script>
// Load jQuery
google.load("jquery", "1");
// on page load complete, fire off a jQuery json-p query
// against Google web search
google.setOnLoadCallback(function() {
$.getJSON("http://ajax.googleapis.com/ajax/services/search/web?q=google&;v=1.0&;callback=?",
// on search completion, process the results
function (data) {
if (data.responseDate.results &&
data.responseDate.results.length>0) {
renderResults(data.responseDate.results);
}
});
});
</script>
google.load("jquery", "1.2.3");
google.load("prototype", "1.6");
google.load("scriptaculous", "1.8.1");
google.load("mootools", "1.11");
google.load("dojo", "1.1.1");
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Menu with YUI Goodness</title>
<link rel="stylesheet"
href="yui-rollover_files/yui-rollover.css"
type="text/css" media="screen">
<script type="text/javascript"
src="yui-rollover_files/yahoo-dom-event.js"></script>
<script type="text/javascript">
// Create a menu object, put everything we need into it
var menu = {
// Initialize the menu rollover
init : function() {
// Get the btn elements
btns = YAHOO.util.Dom.getElementsByClassName('btn', 'div', 'menu');
// Assign event listeners to the btns
for (var i=0; i<btns.length; i++) {
YAHOO.util.Event.addListener(btns[i], 'mouseover', menu.roll, i);
YAHOO.util.Event.addListener(btns[i], 'mouseout', menu.roll);
}
},
// First, turn 'em all off, then turn one on
roll : function(e, i) {
YAHOO.util.Dom.removeClass(btns, 'btn-over');
YAHOO.util.Dom.addClass(btns[i], 'btn-over');
}
};
// Initialize the menu
YAHOO.util.Event.on(window, 'load', menu.init);
</script></head><body>
<div id="menu">
<div class="btn">
<a href="#">Link 1</a>
<p>Description for link 1</p>
</div>
<div class="btn">
<a href="#">Link 2</a>
<p>Description for link 2</p>
</div>
<div class="btn">
<a href="#">Link 3</a>
<p>Description for link 3</p>
</div>
</div>
</body>
</html><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Menu with jQuery</title>
<link rel="stylesheet"
href="jquery-rollover_files/jquery-rollover.css"
type="text/css" media="screen">
<script type="text/javascript"
src="jquery-rollover_files/jquery-1.2.3.min.js"></script>
<script type="text/javascript">
jQuery(function($) {
btns = $('.btn');
btns.hover(
function(){ $(this).addClass('btn-over')},
function(){ $(this).removeClass('btn-over')}
)
})
</script></head><body>
<div id="menu">
<div class="btn">
<a href="#">Link 1</a>
<p>Description for link 1</p>
</div>
<div class="btn">
<a href="#">Link 2</a>
<p>Description for link 2</p>
</div>
<div class="btn">
<a href="#">Link 3</a>
<p>Description for link 3</p>
</div>
</div>
</body>
</html>
YUI 2.5.1 Released
http://developer.yahoo.com/yui/