SlideShare a Scribd company logo
getting started
with YUI3 and
AlloyUI
Mainz, 2013.
Getting started with YUI3 and AlloyUI
Getting started with YUI3 and AlloyUI
how some
back-end
devs see
themselves
how some
back-end
devs see
front-end
devs
“CSS is very easy”
Getting started with YUI3 and AlloyUI
Getting started with YUI3 and AlloyUI
Getting started with YUI3 and AlloyUI
“javascript
is ugly and
full of bugs”
Getting started with YUI3 and AlloyUI
EcmaScript 6 is coming
front-end
is changing
extremejs.com
github.com/languages
there are three
types of people
1. those who
compile
javascript
developers.google.com/web-toolkit
2. those who
doesn’t
compile
developers.google.com/closure/library
3. java == javascript
Getting started with YUI3 and AlloyUI
Getting started with YUI3 and AlloyUI
twitter.com/joelambert/status/327047616326152193
Getting started with YUI3 and AlloyUI
today we’re
going to
talk about
server-agnostic
JS frameworks
Events,
Selection,
DOM Manipulation,
Animation,
Ajax requests
jquery.com
mootools.net
UI components
twitter.github.io/bootstrap
jqueryui.com
Templates
mustache.github.io
handlebarsjs.com
Module loader
requirejs.org
headjs.com
MV*
backbonejs.org
knockoutjs.com
angularjs.org
emberjs.com
Tests
BDD
TDD
pivotal.github.io/jasmine
qunitjs.com
Getting started with YUI3 and AlloyUI
yuilibrary.com
yuilibrary.com/projects/yuitest
yui.github.io/yuicompressor
yui.github.io/yuidoc
yui.github.io/yogi
YUI3
modules
YUI =
effects
DOM
ajax
events
...
MVC
YUI =
effects
DOM
ajax
events
...
MVC
YUI =
effects
DOM
ajax
events
...
MVC
YUI =
effects
DOM
ajax
events
...
MVC
YUI =
effects
DOM
ajax
events
...
MVC
YUI =
effects
DOM
ajax
events
...
MVC
YUI =
effects
DOM
ajax
events
...
MVC
yuilibrary.com/yui/docs/guides
yuilibrary.com/yui/docs/dial/dial-interactive.html
yuilibrary.com/yui/docs/app/app-todo.html
yuilibrary.com/yui/docs/graphics/graphics-violin.html
YUI3
basics
$('.foo');
DOM
traversal
Y.all('.foo');
YUI3
jQuery
$('#foo').html('bar');
DOM
manipulation
Y.one('#foo').setHTML('bar');
YUI3
jQuery
$('#close-btn').on('click', function() {
// do something
});
events
Y.one('#close-btn').on('click', function() {
// do something
});
YUI3
jQuery
$('#fade').animate({
opacity: 0,
}, 5000);
effects
Y.one('#fade').transition({
duration: 1,
opacity : 0
});
YUI3
jQuery
$.ajax({
url: "api.json",
success: function(data) {
// do something
}
});
ajax
Y.io('api.json', {
on: {
success: function(data) {
// do something
}
}
});
YUI3
jQuery
alloyui.com/rosetta-stone
YUI3
loading
Getting started with YUI3 and AlloyUI
“Optimize the front-end
performance first, because
80/90% of the user response
time is spent there.”
- Steve Souders,
Engineer at Google
without YUI...
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/
1.9.1/jquery.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jqueryui/
1.10.2/jquery-ui.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/
mustache.js/0.7.2/mustache.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/
require.js/2.1.5/require.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/ember.js/
1.0.0-rc.2/ember-1.0.pre.js"></script>
...
...
performance--
maintainability--
blocks render
with YUI...
one <script>
seed file
<script src="http://yui.yahooapis.com/
3.9.1/build/yui/yui-min.js"></script>
everything else
asynchronous
combo-loaded
from CDN
sandbox
YUI().use('module-name', function (Y) {
// code goes here
});
why
asynchronous?
non-blocking
http requests
why
combo-loaded?
yuilibrary.com/yui/configurator
why
load from a CDN?
geographically
closer
YUI
gallery
yuilibrary.com/gallery
your code on
Yahoo’s CDN
github.com/yui/yui3-gallery
available to
anyone
just use()
YUI().use('gallery-audio', function (Y) {
// code goes here
});
mzl.la/OEbuQH
AlloyUI
@natecavanaugh
@eduardolundgren
created on 2009
alloyui.com
built on top of YUI3
AlloyUI =
calendar
tabs
buttons
carousel
...
audio
AlloyUI =
calendar
tabs
buttons
carousel
...
audio
AlloyUI =
calendar
tabs
buttons
carousel
...
audio
AlloyUI =
calendar
tabs
buttons
carousel
...
audio
AlloyUI =
calendar
tabs
buttons
carousel
...
audio
AlloyUI =
calendar
tabs
buttons
carousel
...
audio
AlloyUI =
calendar
tabs
buttons
carousel
...
audio
what we wanted:
char counter
#twitter-box
#myTextarea
#myCounter
#twitter-box
#myTextarea
#myCounter
#twitter-box
#myTextarea
#myCounter
#twitter-box
#myTextarea
#myCounter
alloyui.com/examples/char-counter/real-world
what we wanted:
schedule
Getting started with YUI3 and AlloyUI
alloyui.com/examples/scheduler
what we wanted:
a better way to
express ideas
* drag and drop UI
* flexible API
* support all browsers
* no flash (HTML5)
alloyui.com/examples/diagram-builder
alloyui.com/api
but I’m
a java
guy!
<taglibs> o/
taglibs
<aui:button name="saveButton"
type="submit" value="save"/>
Button
taglibs
<aui:input name="myField" >
<aui:validator name="required" />
<aui:validator name="digits" />
<aui:validator name="range" >
[8,50]
</aui:validator>
</aui:input>
Form Validation
the success of an application
doesn’t depends on the
technology itself...
...but how it is applied.
Getting started with YUI3 and AlloyUI
Getting started with YUI3 and AlloyUI
dank :)

More Related Content

PPTX
2009 End Of Year Cluster Share
PDF
jQueryTO: State of jQuery March 2013
PDF
jQuery Conference Toronto
ODP
PDF
Web services and JavaScript
PDF
PrairieDevCon 2014 - Web Doesn't Mean Slow
PDF
Introduction to Android G-sensor
PDF
Liferay UI (R)evolution
2009 End Of Year Cluster Share
jQueryTO: State of jQuery March 2013
jQuery Conference Toronto
Web services and JavaScript
PrairieDevCon 2014 - Web Doesn't Mean Slow
Introduction to Android G-sensor
Liferay UI (R)evolution

Viewers also liked (8)

PPTX
Introdução ao HTML4 e HTML5
PDF
Building a JavaScript Module Framework at Gilt
PPT
HTML 5
PDF
YUI App Framework
PDF
Desbravando o HTML5 Boilerplate
PDF
Construindo Projetos Robustos em HTML5
PPTX
Android Training (Sensors)
PDF
Web APIs you (probably) didn't know existed
Introdução ao HTML4 e HTML5
Building a JavaScript Module Framework at Gilt
HTML 5
YUI App Framework
Desbravando o HTML5 Boilerplate
Construindo Projetos Robustos em HTML5
Android Training (Sensors)
Web APIs you (probably) didn't know existed
Ad

Similar to Getting started with YUI3 and AlloyUI (20)

PDF
JavaScript MV* Framework - Making the Right Choice
PPTX
Starting with jQuery
PPTX
Going Offline with JS
PDF
Seven Versions of One Web Application
PPTX
Going offline with JS (DDD Sydney)
PDF
Angularjs cascade
PPTX
jquery summit presentation for large scale javascript applications
PPTX
jQuery - the world's most popular java script library comes to XPages
PPT
PPTX
Dynamic Groovy Edges
KEY
Modules and EmbedJS
PDF
Front-end optimisation & jQuery Internals (Pycon)
PDF
Javascript toolkit-2.0
PPT
jQuery and_drupal
PDF
Front End Development for Back End Java Developers - Jfokus 2020
PDF
Laug Mootools And Common Js
PDF
What is front-end development ?
PPTX
Angular JS, A dive to concepts
PDF
Top 45 jQuery Interview Questions and Answers | Edureka
JavaScript MV* Framework - Making the Right Choice
Starting with jQuery
Going Offline with JS
Seven Versions of One Web Application
Going offline with JS (DDD Sydney)
Angularjs cascade
jquery summit presentation for large scale javascript applications
jQuery - the world's most popular java script library comes to XPages
Dynamic Groovy Edges
Modules and EmbedJS
Front-end optimisation & jQuery Internals (Pycon)
Javascript toolkit-2.0
jQuery and_drupal
Front End Development for Back End Java Developers - Jfokus 2020
Laug Mootools And Common Js
What is front-end development ?
Angular JS, A dive to concepts
Top 45 jQuery Interview Questions and Answers | Edureka
Ad

More from Zeno Rocha (11)

PDF
Future of Web Development
PDF
Tracking.js
PDF
Liferay + Wearables
PDF
Como empreender em... você!
PDF
Um futuro chamado Web Components
PDF
How to create high scalable JavaScript apps for Java Portals
PDF
Augmented Reality in JavaScript
PDF
Como Perder Peso (no browser)
PDF
Os mitos do desenvolvimento front-end
KEY
Super Trunfo - Case de Dados Abertos
PPTX
Wordpress
Future of Web Development
Tracking.js
Liferay + Wearables
Como empreender em... você!
Um futuro chamado Web Components
How to create high scalable JavaScript apps for Java Portals
Augmented Reality in JavaScript
Como Perder Peso (no browser)
Os mitos do desenvolvimento front-end
Super Trunfo - Case de Dados Abertos
Wordpress

Recently uploaded (20)

PDF
Spectral efficient network and resource selection model in 5G networks
PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
PPTX
20250228 LYD VKU AI Blended-Learning.pptx
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PDF
Electronic commerce courselecture one. Pdf
PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PDF
Review of recent advances in non-invasive hemoglobin estimation
PDF
Unlocking AI with Model Context Protocol (MCP)
PPTX
Cloud computing and distributed systems.
PPTX
ACSFv1EN-58255 AWS Academy Cloud Security Foundations.pptx
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PDF
Machine learning based COVID-19 study performance prediction
PPTX
Spectroscopy.pptx food analysis technology
PDF
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
PDF
NewMind AI Weekly Chronicles - August'25 Week I
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
DOCX
The AUB Centre for AI in Media Proposal.docx
PPT
Teaching material agriculture food technology
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
Spectral efficient network and resource selection model in 5G networks
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
20250228 LYD VKU AI Blended-Learning.pptx
Reach Out and Touch Someone: Haptics and Empathic Computing
Electronic commerce courselecture one. Pdf
The Rise and Fall of 3GPP – Time for a Sabbatical?
Review of recent advances in non-invasive hemoglobin estimation
Unlocking AI with Model Context Protocol (MCP)
Cloud computing and distributed systems.
ACSFv1EN-58255 AWS Academy Cloud Security Foundations.pptx
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
Machine learning based COVID-19 study performance prediction
Spectroscopy.pptx food analysis technology
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
Building Integrated photovoltaic BIPV_UPV.pdf
NewMind AI Weekly Chronicles - August'25 Week I
Mobile App Security Testing_ A Comprehensive Guide.pdf
The AUB Centre for AI in Media Proposal.docx
Teaching material agriculture food technology
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf

Getting started with YUI3 and AlloyUI