$.ajax({
url: "api.json",
success: function(data) {
// do something
}
});
ajax
Y.io('api.json', {
on: {
success: function(data) {
// do something
}
}
});
YUI3
jQuery
Thursday, October 17, 13
Slide 26
Slide 26 text
alloyui.com/rosetta-stone
Thursday, October 17, 13
Slide 27
Slide 27 text
YUI3
loading
Thursday, October 17, 13
Slide 28
Slide 28 text
Thursday, October 17, 13
Slide 29
Slide 29 text
“Optimize the front-end
performance first, because 80%
of the user response time is
spent there.”
- Steve Souders,
Engineer at Google
Thursday, October 17, 13
Slide 30
Slide 30 text
without YUI...
Thursday, October 17, 13
Slide 31
Slide 31 text
...
...
Thursday, October 17, 13
Slide 32
Slide 32 text
performance--
maintainability--
Thursday, October 17, 13
Slide 33
Slide 33 text
blocks render
Thursday, October 17, 13
Slide 34
Slide 34 text
with YUI...
Thursday, October 17, 13
Slide 35
Slide 35 text
one
Thursday, October 17, 13
Slide 36
Slide 36 text
seed file
<~26KB>
Thursday, October 17, 13
Slide 37
Slide 37 text
seed file
<~26KB>
Thursday, October 17, 13
Slide 38
Slide 38 text
everything else
asynchronous
combo-loaded
from CDN
Thursday, October 17, 13
Slide 39
Slide 39 text
sandbox
YUI().use('module-name', function (Y) {
// code goes here
});
Thursday, October 17, 13
Slide 40
Slide 40 text
why
asynchronous?
Thursday, October 17, 13
Slide 41
Slide 41 text
non-blocking
http requests
Thursday, October 17, 13
Slide 42
Slide 42 text
load on demand
Thursday, October 17, 13
Slide 43
Slide 43 text
why
combo-loaded?
Thursday, October 17, 13
Slide 44
Slide 44 text
yuilibrary.com/yui/configurator
Thursday, October 17, 13
Slide 45
Slide 45 text
loader +combo
Thursday, October 17, 13
Slide 46
Slide 46 text
why
load from a CDN?
Thursday, October 17, 13
Slide 47
Slide 47 text
geographically
closer
Thursday, October 17, 13
Slide 48
Slide 48 text
YUI
gallery
Thursday, October 17, 13
Slide 49
Slide 49 text
yuilibrary.com/gallery
Thursday, October 17, 13
Slide 50
Slide 50 text
your code on
Yahoo’s CDN
Thursday, October 17, 13
Slide 51
Slide 51 text
github.com/yui/yui3-gallery
Thursday, October 17, 13
Slide 52
Slide 52 text
available to
anyone
Thursday, October 17, 13
Slide 53
Slide 53 text
just use()
YUI().use('gallery-audio', function (Y) {
// code goes here
});
Thursday, October 17, 13