SlideShare ist ein Scribd-Unternehmen logo
1 von 114
Downloaden Sie, um offline zu lesen
KILL ALL
HUMANS!
I. Robot
Forensic Anthropologist
Making
Burgers with
JavaScript
November 11, 2010
Saturday, November 13, 2010
Who am I
Saturday, November 13, 2010
Who am I
• Diogo Antunes
Saturday, November 13, 2010
Who am I
• Diogo Antunes
• JavaScript developer @ SAPO
Saturday, November 13, 2010
Who am I
• Diogo Antunes
• JavaScript developer @ SAPO
• @dicode
Saturday, November 13, 2010
Who am I
• Diogo Antunes
• JavaScript developer @ SAPO
• @dicode
• http://js.sapo.pt
Saturday, November 13, 2010
Should I stay or should I
go?
Saturday, November 13, 2010
Should I stay or should I
go?
• we are going to talk about JavaScript
Saturday, November 13, 2010
Should I stay or should I
go?
• we are going to talk about JavaScript
• so I will skip some steps
Saturday, November 13, 2010
Should I stay or should I
go?
• we are going to talk about JavaScript
• so I will skip some steps
• but feel free to bug me if you need
Saturday, November 13, 2010
don’t like JavaScript????
Should I stay or should I
go?
Saturday, November 13, 2010
GO AWAY!!!
http://images.icanhascheezburger.com/completestore/
2008/12/22/128744751250625583.jpg
What are we talking
about?
Saturday, November 13, 2010
What are we talking
about?
• JavaScript
Saturday, November 13, 2010
thank you captain obvious
http://www.eiaonline.com/uploaded_images/captobvious-738633-747223.jpg
What are we talking
about?
• JavaScript
• Raphaël - JavaScript Library
Saturday, November 13, 2010
What are we talking
about?
• JavaScript
• Raphaël - JavaScript Library
• LibSAPO.js - for event handling and
stuff
Saturday, November 13, 2010
What are we talking
about?
• JavaScript
• Raphaël - JavaScript Library
• LibSAPO.js - for event handling and
stuff
• and more...
Saturday, November 13, 2010
if we have time... basically
Raphaël - wtf?
Saturday, November 13, 2010
http://chericos.org/system/files/images/raphael_logo.jpg
Raphaël - wtf?
• JavaScript library to simplify work with
vector graphics
Saturday, November 13, 2010
Raphaël - wtf?
• JavaScript library to simplify work with
vector graphics
• uses SVG W3C recommendation and
VML
Saturday, November 13, 2010
Raphaël - wtf?
• JavaScript library to simplify work with
vector graphics
• uses SVG W3C recommendation and
VML
• so every graphic element is a DOM Node
Saturday, November 13, 2010
Raphaël - wtf?
• JavaScript library to simplify work with
vector graphics
• uses SVG W3C recommendation and
VML
• so every graphic element is a DOM Node
• so you can add events to it... YAY!
Saturday, November 13, 2010
Raphaël - wtf?
• JavaScript library to simplify work with
vector graphics
• uses SVG W3C recommendation and
VML
• so every graphic element is a DOM Node
• so you can add events to it... YAY!
• supports FF3+ SF3+ Ch5+ Op9.5+ IE6+
Saturday, November 13, 2010
Raphaël - why?
Saturday, November 13, 2010
Raphaël - why?
• lightweight - 20k
Saturday, November 13, 2010
Raphaël - why?
• lightweight - 20k
• cross browser support
Saturday, November 13, 2010
Raphaël - why?
• lightweight - 20k
• cross browser support
• it’s easy to work with
Saturday, November 13, 2010
Raphaël - why?
• lightweight - 20k
• cross browser support
• it’s easy to work with
• made by Dmitry Baranovskiy who
totally ROCKS!!!
Saturday, November 13, 2010
Raphaël - how?
Saturday, November 13, 2010
Raphaël - how?
• download it
Saturday, November 13, 2010
Raphaël - how?
• download it
• include it in your html
<script type="text/javascript" src="raphael.js"></script>
Saturday, November 13, 2010
Raphaël - how?
• download it
• include it in your html
<script type="text/javascript" src="raphael.js"></script>
• and code it!
Saturday, November 13, 2010
So in your script tag you can use Raphael
but wait...
what does this really do? and have
Raphaël - demos
Saturday, November 13, 2010
You can check the website and see
Raphaël - demos
Saturday, November 13, 2010
a tiger
Raphaël - demos
Saturday, November 13, 2010
text rendering - helvetica example
Raphaël - demos
Saturday, November 13, 2010
a maze game
Raphaël - demos
Saturday, November 13, 2010
how to rotate images
Raphaël - demos
Saturday, November 13, 2010
well, event the logo is vector based
Raphaël - the basics
• creating your canvas
Saturday, November 13, 2010
Raphaël - the basics
• creating your canvas
var canvas = Raphael("container", 400, 300);
Saturday, November 13, 2010
creating a canvas on element with id container, giving it width 400 and height 300
Raphaël - the basics
• creating your canvas
var canvas = Raphael("container", 400, 300);
var canvas = Raphael(container, 400, 300);
Saturday, November 13, 2010
creating a canvas on element container (previously selected or created), giving it width 400
and height 300
Raphaël - the basics
• creating your canvas
var canvas = Raphael("container", 400, 300);
var canvas = Raphael(container, 400, 300);
var canvas = Raphael(10, 10, 400, 300);
Saturday, November 13, 2010
creating a canvas on top 10 and left 10 of your page giving it width 400 and height 300
Raphaël - the primitives
var paper = Raphael(10,10, 500, 500);
paper.circle(100, 100, 50);
Saturday, November 13, 2010
circle args (xcenter, ycenter, radius)
Raphaël - the primitives
• var paper = Raphael(10,10, 500, 500);
paper.rect(200, 200, 100, 50);
Saturday, November 13, 2010
rect args (x, y, width, height)
Raphaël - the primitives
var paper = Raphael(10,10, 500, 500);
paper.rect(300, 300, 100, 50, 5);
Saturday, November 13, 2010
rect with rounded corners args (x, y, width, height, radius)
Raphaël - the primitives
var paper = Raphael(10,10, 500, 500);
paper.ellipse(400, 400, 40, 20);
Saturday, November 13, 2010
ellipse args (xcenter, ycenter, hradius, vradius)
Raphaël - see it happen
var paper = Raphael(10, 10, 500, 500);
var path = paper.path("M20 20L245 245");
Saturday, November 13, 2010
create a path - move to 20, 20 Line Till 145, 145
Raphaël - see it happen
• var paper = Raphael(10, 10, 500, 500);
var path = paper.path("M20 20L245 245");
var square = paper.rect(15, 15, 10, 10);
Saturday, November 13, 2010
create a rectangule
Raphaël - see it happen
var paper = Raphael(10, 10, 500, 500);
var path = paper.path("M20 20L245 245");
var square = paper.rect(15, 15, 10, 10);
square.animateAlong(path, 4000);
Saturday, November 13, 2010
make the rectangule animate through the path
Raphaël - see it happen
var paper = Raphael(10, 10, 500, 500);
var path = paper.path("M20 20L245 245");
var square = paper.rect(15, 15, 10, 10);
square.animateAlong(path, 4000, function(){
setInterval(function(){
square.rotate(1);
}, 10);
});
Saturday, November 13, 2010
and animate rotation in the end...
Raphaël - text
• you can use raphael with cufon to
enhance your site look
Saturday, November 13, 2010
you can use raphael with cufon to enhance your site look - do not abuse!!!
Raphaël - demo svg to js :)
• so you use some graphic sw to make
an svg
Saturday, November 13, 2010
like gimp or illustrator
Raphaël - demo svg to js :)
• so you use some graphic sw to make
an svg
• then you want to use it with Raphaël
Saturday, November 13, 2010
Raphaël - demo svg to js :)
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator:Adobe Illustrator 15.0.1, SVG Export Plug-In . SVGVersion: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_2" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
	

 width="296px" height="86.811px" viewBox="0 0 296 86.811" enable-background="new 0 0 296 86.811" xml:space="preserve">
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="52.7769" y1="-4.7632" x2="271.7753" y2="83.2362">
	

 <stop offset="0" style="stop-color:#FBB31B"/>
	

 <stop offset="1" style="stop-color:#FDD858"/>
</linearGradient>
<path fill="url(#SVGID_1_)" d="M6.767,10.197c0,0,1.997,14.082,20.844,19.404c3.484,1.108,20.097,5.415,25.104,9.688
	

 c0.44,0.134,17.162,10.868,20.787,14.432s14.347,11.632,19.921,16.735s11.465,12.482,12.739,12.85s3.293,0.924,4.941,0
	

 s4.771-4.134,6.861-6.232s10.98-7.547,13.433-8.96s10.315-5.903,13.327-7.751s17.265-11.646,21.045-15.457
	

 c3.192-1.106,6.315-2.958,8.493-3.347s25.459-4.583,27.804-1.907c3.803-0.711,9.068-2.409,10.987-3.34s6.605-3.521,6.605-3.521
	

 s7.754-3.467,10.855-3.186c3.104,0.282,6.045,1.998,14.852-1.344c8.809-3.342,14.371-9.2,19.752-7.401s17.279,10.287,15.77,21.276
	

 c0.26,2.564-1.074,11.543,0.408,11.562c1.48,0.02,8.861-0.249,8.699-2.838s-3.24-16.284-6.578-20.747
	

 c-3.336-4.463-9.035-13.457-17.533-15.738c-2.246-0.005-87.95-1.256-104.335-4.177S71.715,1.003,59.395,2.384
	

 c-3.461,0.802-22.562-0.335-32.25,2.391S6.767,10.197,6.767,10.197z"/>
</svg>
Saturday, November 13, 2010
when you edit and svg file in a text editor you get
Raphaël - demo svg to js :)
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator:Adobe Illustrator 15.0.1, SVG Export Plug-In . SVGVersion: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_2" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
	

 width="296px" height="86.811px" viewBox="0 0 296 86.811" enable-background="new 0 0 296 86.811" xml:space="preserve">
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="52.7769" y1="-4.7632" x2="271.7753" y2="83.2362">
	

 <stop offset="0" style="stop-color:#FBB31B"/>
	

 <stop offset="1" style="stop-color:#FDD858"/>
</linearGradient>
<path fill="url(#SVGID_1_)" d="M6.767,10.197c0,0,1.997,14.082,20.844,19.404c3.484,1.108,20.097,5.415,25.104,9.688
	

 c0.44,0.134,17.162,10.868,20.787,14.432s14.347,11.632,19.921,16.735s11.465,12.482,12.739,12.85s3.293,0.924,4.941,0
	

 s4.771-4.134,6.861-6.232s10.98-7.547,13.433-8.96s10.315-5.903,13.327-7.751s17.265-11.646,21.045-15.457
	

 c3.192-1.106,6.315-2.958,8.493-3.347s25.459-4.583,27.804-1.907c3.803-0.711,9.068-2.409,10.987-3.34s6.605-3.521,6.605-3.521
	

 s7.754-3.467,10.855-3.186c3.104,0.282,6.045,1.998,14.852-1.344c8.809-3.342,14.371-9.2,19.752-7.401s17.279,10.287,15.77,21.276
	

 c0.26,2.564-1.074,11.543,0.408,11.562c1.48,0.02,8.861-0.249,8.699-2.838s-3.24-16.284-6.578-20.747
	

 c-3.336-4.463-9.035-13.457-17.533-15.738c-2.246-0.005-87.95-1.256-104.335-4.177S71.715,1.003,59.395,2.384
	

 c-3.461,0.802-22.562-0.335-32.25,2.391S6.767,10.197,6.767,10.197z"/>
</svg>
Saturday, November 13, 2010
you have path info for raphaël use
Raphaël - demo svg to js :)
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator:Adobe Illustrator 15.0.1, SVG Export Plug-In . SVGVersion: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_2" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
	

 width="296px" height="86.811px" viewBox="0 0 296 86.811" enable-background="new 0 0 296 86.811" xml:space="preserve">
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="52.7769" y1="-4.7632" x2="271.7753" y2="83.2362">
	

 <stop offset="0" style="stop-color:#FBB31B"/>
	

 <stop offset="1" style="stop-color:#FDD858"/>
</linearGradient>
<path fill="url(#SVGID_1_)" d="M6.767,10.197c0,0,1.997,14.082,20.844,19.404c3.484,1.108,20.097,5.415,25.104,9.688
	

 c0.44,0.134,17.162,10.868,20.787,14.432s14.347,11.632,19.921,16.735s11.465,12.482,12.739,12.85s3.293,0.924,4.941,0
	

 s4.771-4.134,6.861-6.232s10.98-7.547,13.433-8.96s10.315-5.903,13.327-7.751s17.265-11.646,21.045-15.457
	

 c3.192-1.106,6.315-2.958,8.493-3.347s25.459-4.583,27.804-1.907c3.803-0.711,9.068-2.409,10.987-3.34s6.605-3.521,6.605-3.521
	

 s7.754-3.467,10.855-3.186c3.104,0.282,6.045,1.998,14.852-1.344c8.809-3.342,14.371-9.2,19.752-7.401s17.279,10.287,15.77,21.276
	

 c0.26,2.564-1.074,11.543,0.408,11.562c1.48,0.02,8.861-0.249,8.699-2.838s-3.24-16.284-6.578-20.747
	

 c-3.336-4.463-9.035-13.457-17.533-15.738c-2.246-0.005-87.95-1.256-104.335-4.177S71.715,1.003,59.395,2.384
	

 c-3.461,0.802-22.562-0.335-32.25,2.391S6.767,10.197,6.767,10.197z"/>
</svg>
Saturday, November 13, 2010
and you have color info for linear gradient
Raphaël - demo svg to js :)
var paper = Raphael(0, 0, 296, 87);
Saturday, November 13, 2010
get your stage done
Raphaël - demo svg to js :)
var paper = Raphael(0, 0, 296, 87);
var cheesePath = paper.path("M6.767,10.197c0,0,1.997,14.082,20.844,19.404c3.484,1.108,20.097,5.415,25.104,9.688"+
"c0.44,0.134,17.162,10.868,20.787,14.432s14.347,11.632,19.921,16.735s11.465,12.482,12.739,12.85s3.293,0.924,4.941,0"+
"s4.771-4.134,6.861-6.232s10.98-7.547,13.433-8.96s10.315-5.903,13.327-7.751s17.265-11.646,21.045-15.457"+
"c3.192-1.106,6.315-2.958,8.493-3.347s25.459-4.583,27.804-1.907c3.803-0.711,9.068-2.409,10.987-3.34s6.605-3.521,6.605-3.521"+
"s7.754-3.467,10.855-3.186c3.104,0.282,6.045,1.998,14.852-1.344c8.809-3.342,14.371-9.2,19.752-7.401s17.279,10.287,15.77,21.276"+
"c0.26,2.564-1.074,11.543,0.408,11.562c1.48,0.02,8.861-0.249,8.699-2.838s-3.24-16.284-6.578-20.747"+
"c-3.336-4.463-9.035-13.457-17.533-15.738c-2.246-0.005-87.95-1.256-104.335-4.177S71.715,1.003,59.395,2.384"+
"c-3.461,0.802-22.562-0.335-32.25,2.391S6.767,10.197,6.767,10.197z");
Saturday, November 13, 2010
put your path in it
Raphaël - demo svg to js :)
var paper = Raphael(0, 0, 296, 87);
var cheesePath = paper.path("M6.767,10.197c0,0,1.997,14.082,20.844,19.404c3.484,1.108,20.097,5.415,25.104,9.688"+
"c0.44,0.134,17.162,10.868,20.787,14.432s14.347,11.632,19.921,16.735s11.465,12.482,12.739,12.85s3.293,0.924,4.941,0"+
"s4.771-4.134,6.861-6.232s10.98-7.547,13.433-8.96s10.315-5.903,13.327-7.751s17.265-11.646,21.045-15.457"+
"c3.192-1.106,6.315-2.958,8.493-3.347s25.459-4.583,27.804-1.907c3.803-0.711,9.068-2.409,10.987-3.34s6.605-3.521,6.605-3.521"+
"s7.754-3.467,10.855-3.186c3.104,0.282,6.045,1.998,14.852-1.344c8.809-3.342,14.371-9.2,19.752-7.401s17.279,10.287,15.77,21.276"+
"c0.26,2.564-1.074,11.543,0.408,11.562c1.48,0.02,8.861-0.249,8.699-2.838s-3.24-16.284-6.578-20.747"+
"c-3.336-4.463-9.035-13.457-17.533-15.738c-2.246-0.005-87.95-1.256-104.335-4.177S71.715,1.003,59.395,2.384"+
"c-3.461,0.802-22.562-0.335-32.25,2.391S6.767,10.197,6.767,10.197z");
cheesePath.attr({fill: '0-#FBB31B-#FDD858', stroke: 'none'});
Saturday, November 13, 2010
add the linear gradient ‹angle›-‹colour›[-‹colour›[:‹offset›]]*-‹colour›
removed the stroke so doesn’t default to black
Raphaël - demo svg to js :)
SVG file Raphaël
Saturday, November 13, 2010
raphaël version rendered in chrome
now make it easy you have a php script that does this
where are the burgers?
Saturday, November 13, 2010
where are the burgers?
Saturday, November 13, 2010
here they are
where are the burgers?
Saturday, November 13, 2010
big deal... i can do that in my sleep
http://zedomax.com/blog/wp-content/uploads/2009/02/burger-bed.jpg
let’s make a game!
Saturday, November 13, 2010
http://techau.tv/blog/images/GameOnExhibitionmythoughts_12815/GameOn.jpg
let’s make a game!
• using raphaël to manage graphics
Saturday, November 13, 2010
let’s make a game!
• using raphaël to manage graphics
• and LibSAPO.js to handle events and
stuff
Saturday, November 13, 2010
LibSAPO.js - wtf?
Saturday, November 13, 2010
LibSAPO.js - wtf?
• SAPO JavaScript Library
Saturday, November 13, 2010
LibSAPO.js - wtf?
• SAPO JavaScript Library
• previously Prototypejs based
Saturday, November 13, 2010
LibSAPO.js - wtf?
• SAPO JavaScript Library
• previously Prototypejs based
• now Prototypejs free :)
Saturday, November 13, 2010
LibSAPO.js - wtf?
• SAPO JavaScript Library
• previously Prototypejs based
• now Prototypejs free :)
• module oriented
Saturday, November 13, 2010
LibSAPO.js - why?
Saturday, November 13, 2010
LibSAPO.js - why?
• oriented to SAPO needs
Saturday, November 13, 2010
LibSAPO.js - why?
• oriented to SAPO needs
• feature add on demand
Saturday, November 13, 2010
LibSAPO.js - why?
• oriented to SAPO needs
• feature add on demand
• bug solving simpler and quicker
Saturday, November 13, 2010
LibSAPO.js - why?
• oriented to SAPO needs
• feature add on demand
• bug solving simpler and quicker
• modular and performance target
Saturday, November 13, 2010
to fork other js framework
would be harder to code reuse and recode addons
LibSAPO.js - how?
Saturday, November 13, 2010
LibSAPO.js - how?
• all in http://js.sapo.pt/
Saturday, November 13, 2010
LibSAPO.js - how?
• all in http://js.sapo.pt/
• include /SAPO/
Saturday, November 13, 2010
LibSAPO.js - how?
• all in http://js.sapo.pt/
• include /SAPO/
• and then the module you want
Saturday, November 13, 2010
LibSAPO.js - how?
• all in http://js.sapo.pt/
• include /SAPO/
• and then the module you want
• in our case
Saturday, November 13, 2010
LibSAPO.js - how?
• all in http://js.sapo.pt/
• include /SAPO/
• and then the module you want
• in our case
• /SAPO/Dom/Event/0.1/
Saturday, November 13, 2010
LibSAPO.js - demo
<div id="clickMe">click Me</div>
<script type="text/javascript">
var clickMe = s$('clickMe');
SAPO.Dom.Event.observe(clickMe, 'click', function(){
alert(this.innerHTML + " - DONE & handled as you like! ");
}.bindObjEvent(clickMe));
</script>
Saturday, November 13, 2010
this is a simple LibSAPO.js demo for event handling
the game!
Saturday, November 13, 2010
the game!
• so you have two slices of bread
Saturday, November 13, 2010
the game!
• so you have two slices of bread
• and 3 ingredients
Saturday, November 13, 2010
the game!
• so you have two slices of bread
• and 3 ingredients
• now we’re making it to other people
Saturday, November 13, 2010
the game!
• so you have two slices of bread
• and 3 ingredients
• now we’re making it to other people
• so you need to put the ingredients
Saturday, November 13, 2010
the game!
• so you have two slices of bread
• and 3 ingredients
• now we’re making it to other people
• so you need to put the ingredients
• in the correct amount and order
Saturday, November 13, 2010
the game! - ingredients
• making the ingredients with raphaël
Saturday, November 13, 2010
the game! - ingredients
• making the ingredients with raphaël
• since they are js objects you can
reuse it
Saturday, November 13, 2010
the game! - ingredients
• making the ingredients with raphaël
• since they are js objects you can
reuse it
• scale it
Saturday, November 13, 2010
the game! - ingredients
• making the ingredients with raphaël
• since they are js objects you can
reuse it
• scale it
• and use it as many times as you want
Saturday, November 13, 2010
the game!
• now lets put the elements in place
and make a cute start button
Saturday, November 13, 2010
the game!
• Scoreboard
Saturday, November 13, 2010
the game!
• Scoreboard
• with right and wrong feedback
Saturday, November 13, 2010
the game!
• let’s set the events for start
Saturday, November 13, 2010
the game!
• let’s set the events for start
• add the elements to our burger
Saturday, November 13, 2010
the game!
• let’s set the events for start
• add the elements to our burger
• let’s put a counter
Saturday, November 13, 2010
wanna play?
Saturday, November 13, 2010
http://common1.csnimages.com/lf/1/hash/2328/2773778/1/Jaxx-Jr-Kids-Foam-Bean-
Bag-Gamer-Chair.jpg
wanna play?
• http://dicode.org/codebits2010/
makingBurgers.html
• http://6svz.sl.pt
Saturday, November 13, 2010
Questions?
Saturday, November 13, 2010
Do we still have time?
Saturday, November 13, 2010
http://home.btconnect.com/brettoliver1/images/Masterclock/binary_clock.jpg
gRaphaël
Saturday, November 13, 2010
partial print screen of http://g.raphaeljs.com/
gRaphaël
• put the goodness into charts!
Saturday, November 13, 2010
gRaphaël
• put the goodness into charts!
• having raphael.js included
Saturday, November 13, 2010
gRaphaël
• put the goodness into charts!
• having raphael.js included
• Download and include g.raphael.js
and any (or all) of g.line.js, g.bar.js,
g.dot.js and g.pie.js into your HTML
page
Saturday, November 13, 2010
gRaphaël
pie chart
var r = Raphael(10, 50, 640, 480);
r.g.piechart(320, 240, 100, [55, 20, 13, 32, 5, 1, 2]);
Saturday, November 13, 2010
xcenter, ycenter, radius, data
gRaphaël
bar chart
var r = Raphael(10, 50, 640, 480);
r.g.barchart(10, 10, 320, 240, [[55, 20, 13, 32, 5, 1, 2]]);
Saturday, November 13, 2010
x, y, w, h, data
gRaphaël
line chart
var r = Raphael(10, 50, 640, 480);
r.g.linechart(10, 10, 320, 240, [0, 1, 2, 3, 4, 5, 6],
[55, 20, 13, 32, 5, 1, 2]);
Saturday, November 13, 2010
x, y, w, h, xdata, ydata
gRaphaël
dot chart
var r = Raphael(10, 50, 640, 480);
r.g.dotchart(10, 10, 320, 240, [0, 1, 2, 3, 4, 5, 6],
[55, 20, 13, 32, 5, 1, 2], [1, 1, 1, 1, 1, 1, 1],
{max: 3});
Saturday, November 13, 2010
x, y, w, h, xdata, ydata, caption, opts (in this case dot weight)
that’s all folks!
Saturday, November 13, 2010
Diogo Antunes
JavaScript developer @ SAPO
twitter: @dicode
email: diogo.j.antunes@co.sapo.pt
im: diogoantunes@sapo.pt
http://js.sapo.pt
http://libsapojs.blogs.sapo.pt
http://dicode.org
Saturday, November 13, 2010
• Thanks to:
• Dmitry Baranovskiy - slides
inspiration and examples from the
website
• Hugo França - graphics for the
game
Saturday, November 13, 2010
Credits
Please check notes in each slide to
check slide notes which reference
each images i have used in this
presentation
Saturday, November 13, 2010

Weitere ähnliche Inhalte

Ähnlich wie Making burgers with JavaScript

Html5/CSS3 in shanghai 2010
Html5/CSS3 in shanghai 2010Html5/CSS3 in shanghai 2010
Html5/CSS3 in shanghai 2010Zi Bin Cheah
 
RIA Unleashed - Developing for the TV with litl os
RIA Unleashed - Developing for the TV with litl osRIA Unleashed - Developing for the TV with litl os
RIA Unleashed - Developing for the TV with litl osryancanulla
 
Ruby on-rails-workshop
Ruby on-rails-workshopRuby on-rails-workshop
Ruby on-rails-workshopRyan Abbott
 
CSS3大補貼 - COSCUP/GNOME.asia
CSS3大補貼 - COSCUP/GNOME.asiaCSS3大補貼 - COSCUP/GNOME.asia
CSS3大補貼 - COSCUP/GNOME.asiaZi Bin Cheah
 
Presentation plone conference 2012
Presentation plone conference 2012Presentation plone conference 2012
Presentation plone conference 2012Cornelis Kolbach
 
London Ajax User Group Meetup: Vector Graphics
London Ajax User Group Meetup: Vector GraphicsLondon Ajax User Group Meetup: Vector Graphics
London Ajax User Group Meetup: Vector Graphicsdylanks
 
Developing OpenResty Framework
Developing OpenResty FrameworkDeveloping OpenResty Framework
Developing OpenResty FrameworkOpenRestyCon
 
An Introduction To Shoes
An Introduction To ShoesAn Introduction To Shoes
An Introduction To ShoesTobias Pfeiffer
 
Cassandra Meetup: Real-time Analytics using Cassandra, Spark and Shark at Ooyala
Cassandra Meetup: Real-time Analytics using Cassandra, Spark and Shark at OoyalaCassandra Meetup: Real-time Analytics using Cassandra, Spark and Shark at Ooyala
Cassandra Meetup: Real-time Analytics using Cassandra, Spark and Shark at OoyalaDataStax Academy
 
Dr. Strangelove: or How I learned to love HTML, CSS, and Javascript
Dr. Strangelove: or How I learned to love HTML, CSS, and JavascriptDr. Strangelove: or How I learned to love HTML, CSS, and Javascript
Dr. Strangelove: or How I learned to love HTML, CSS, and JavascriptRobotDeathSquad
 
We're not designing posters, here!
We're not designing posters, here!We're not designing posters, here!
We're not designing posters, here!André Luís
 
Designing with Web Fonts: Type, Responsively (PVD)
Designing with Web Fonts: Type, Responsively (PVD)Designing with Web Fonts: Type, Responsively (PVD)
Designing with Web Fonts: Type, Responsively (PVD)Jason Pamental
 
The Tech Side of Project Argo
The Tech Side of Project ArgoThe Tech Side of Project Argo
The Tech Side of Project ArgoWesley Lindamood
 
DevOps Columbus Meetup Kickoff - Infrastructure as Code
DevOps Columbus Meetup Kickoff - Infrastructure as CodeDevOps Columbus Meetup Kickoff - Infrastructure as Code
DevOps Columbus Meetup Kickoff - Infrastructure as CodeMichael Ducy
 
Ruby on Rails 3.1: Let's bring the fun back into web programing
Ruby on Rails 3.1: Let's bring the fun back into web programingRuby on Rails 3.1: Let's bring the fun back into web programing
Ruby on Rails 3.1: Let's bring the fun back into web programingBozhidar Batsov
 

Ähnlich wie Making burgers with JavaScript (20)

Html5/CSS3 in shanghai 2010
Html5/CSS3 in shanghai 2010Html5/CSS3 in shanghai 2010
Html5/CSS3 in shanghai 2010
 
OOP and JavaScript
OOP and JavaScriptOOP and JavaScript
OOP and JavaScript
 
RIA Unleashed - Developing for the TV with litl os
RIA Unleashed - Developing for the TV with litl osRIA Unleashed - Developing for the TV with litl os
RIA Unleashed - Developing for the TV with litl os
 
Ruby on-rails-workshop
Ruby on-rails-workshopRuby on-rails-workshop
Ruby on-rails-workshop
 
CSS3大補貼 - COSCUP/GNOME.asia
CSS3大補貼 - COSCUP/GNOME.asiaCSS3大補貼 - COSCUP/GNOME.asia
CSS3大補貼 - COSCUP/GNOME.asia
 
Presentation plone conference 2012
Presentation plone conference 2012Presentation plone conference 2012
Presentation plone conference 2012
 
Raphaël JS Conf
Raphaël JS ConfRaphaël JS Conf
Raphaël JS Conf
 
RaphaêL + JSConf
RaphaêL + JSConfRaphaêL + JSConf
RaphaêL + JSConf
 
UCLA HACKU'11
UCLA HACKU'11UCLA HACKU'11
UCLA HACKU'11
 
London Ajax User Group Meetup: Vector Graphics
London Ajax User Group Meetup: Vector GraphicsLondon Ajax User Group Meetup: Vector Graphics
London Ajax User Group Meetup: Vector Graphics
 
Developing OpenResty Framework
Developing OpenResty FrameworkDeveloping OpenResty Framework
Developing OpenResty Framework
 
An Introduction To Shoes
An Introduction To ShoesAn Introduction To Shoes
An Introduction To Shoes
 
Cassandra Meetup: Real-time Analytics using Cassandra, Spark and Shark at Ooyala
Cassandra Meetup: Real-time Analytics using Cassandra, Spark and Shark at OoyalaCassandra Meetup: Real-time Analytics using Cassandra, Spark and Shark at Ooyala
Cassandra Meetup: Real-time Analytics using Cassandra, Spark and Shark at Ooyala
 
Dr. Strangelove: or How I learned to love HTML, CSS, and Javascript
Dr. Strangelove: or How I learned to love HTML, CSS, and JavascriptDr. Strangelove: or How I learned to love HTML, CSS, and Javascript
Dr. Strangelove: or How I learned to love HTML, CSS, and Javascript
 
We're not designing posters, here!
We're not designing posters, here!We're not designing posters, here!
We're not designing posters, here!
 
Designing with Web Fonts: Type, Responsively (PVD)
Designing with Web Fonts: Type, Responsively (PVD)Designing with Web Fonts: Type, Responsively (PVD)
Designing with Web Fonts: Type, Responsively (PVD)
 
The Tech Side of Project Argo
The Tech Side of Project ArgoThe Tech Side of Project Argo
The Tech Side of Project Argo
 
DevOps Columbus Meetup Kickoff - Infrastructure as Code
DevOps Columbus Meetup Kickoff - Infrastructure as CodeDevOps Columbus Meetup Kickoff - Infrastructure as Code
DevOps Columbus Meetup Kickoff - Infrastructure as Code
 
Building Lanyrd
Building LanyrdBuilding Lanyrd
Building Lanyrd
 
Ruby on Rails 3.1: Let's bring the fun back into web programing
Ruby on Rails 3.1: Let's bring the fun back into web programingRuby on Rails 3.1: Let's bring the fun back into web programing
Ruby on Rails 3.1: Let's bring the fun back into web programing
 

Kürzlich hochgeladen

Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxLoriGlavin3
 
Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rick Flair
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024Lonnie McRorey
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 3652toLead Limited
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsPixlogix Infotech
 
Sample pptx for embedding into website for demo
Sample pptx for embedding into website for demoSample pptx for embedding into website for demo
Sample pptx for embedding into website for demoHarshalMandlekar2
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenHervé Boutemy
 
A Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersA Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersNicole Novielli
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxLoriGlavin3
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxLoriGlavin3
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteDianaGray10
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionDilum Bandara
 
Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embeddingZilliz
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxLoriGlavin3
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii SoldatenkoFwdays
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxLoriGlavin3
 
unit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptxunit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptxBkGupta21
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.Curtis Poe
 

Kürzlich hochgeladen (20)

Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
 
Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and Cons
 
Sample pptx for embedding into website for demo
Sample pptx for embedding into website for demoSample pptx for embedding into website for demo
Sample pptx for embedding into website for demo
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache Maven
 
A Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersA Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software Developers
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test Suite
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An Introduction
 
Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embedding
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
 
unit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptxunit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptx
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.
 

Making burgers with JavaScript

  • 1. KILL ALL HUMANS! I. Robot Forensic Anthropologist Making Burgers with JavaScript November 11, 2010 Saturday, November 13, 2010
  • 2. Who am I Saturday, November 13, 2010
  • 3. Who am I • Diogo Antunes Saturday, November 13, 2010
  • 4. Who am I • Diogo Antunes • JavaScript developer @ SAPO Saturday, November 13, 2010
  • 5. Who am I • Diogo Antunes • JavaScript developer @ SAPO • @dicode Saturday, November 13, 2010
  • 6. Who am I • Diogo Antunes • JavaScript developer @ SAPO • @dicode • http://js.sapo.pt Saturday, November 13, 2010
  • 7. Should I stay or should I go? Saturday, November 13, 2010
  • 8. Should I stay or should I go? • we are going to talk about JavaScript Saturday, November 13, 2010
  • 9. Should I stay or should I go? • we are going to talk about JavaScript • so I will skip some steps Saturday, November 13, 2010
  • 10. Should I stay or should I go? • we are going to talk about JavaScript • so I will skip some steps • but feel free to bug me if you need Saturday, November 13, 2010 don’t like JavaScript????
  • 11. Should I stay or should I go? Saturday, November 13, 2010 GO AWAY!!! http://images.icanhascheezburger.com/completestore/ 2008/12/22/128744751250625583.jpg
  • 12. What are we talking about? Saturday, November 13, 2010
  • 13. What are we talking about? • JavaScript Saturday, November 13, 2010 thank you captain obvious http://www.eiaonline.com/uploaded_images/captobvious-738633-747223.jpg
  • 14. What are we talking about? • JavaScript • Raphaël - JavaScript Library Saturday, November 13, 2010
  • 15. What are we talking about? • JavaScript • Raphaël - JavaScript Library • LibSAPO.js - for event handling and stuff Saturday, November 13, 2010
  • 16. What are we talking about? • JavaScript • Raphaël - JavaScript Library • LibSAPO.js - for event handling and stuff • and more... Saturday, November 13, 2010 if we have time... basically
  • 17. Raphaël - wtf? Saturday, November 13, 2010 http://chericos.org/system/files/images/raphael_logo.jpg
  • 18. Raphaël - wtf? • JavaScript library to simplify work with vector graphics Saturday, November 13, 2010
  • 19. Raphaël - wtf? • JavaScript library to simplify work with vector graphics • uses SVG W3C recommendation and VML Saturday, November 13, 2010
  • 20. Raphaël - wtf? • JavaScript library to simplify work with vector graphics • uses SVG W3C recommendation and VML • so every graphic element is a DOM Node Saturday, November 13, 2010
  • 21. Raphaël - wtf? • JavaScript library to simplify work with vector graphics • uses SVG W3C recommendation and VML • so every graphic element is a DOM Node • so you can add events to it... YAY! Saturday, November 13, 2010
  • 22. Raphaël - wtf? • JavaScript library to simplify work with vector graphics • uses SVG W3C recommendation and VML • so every graphic element is a DOM Node • so you can add events to it... YAY! • supports FF3+ SF3+ Ch5+ Op9.5+ IE6+ Saturday, November 13, 2010
  • 23. Raphaël - why? Saturday, November 13, 2010
  • 24. Raphaël - why? • lightweight - 20k Saturday, November 13, 2010
  • 25. Raphaël - why? • lightweight - 20k • cross browser support Saturday, November 13, 2010
  • 26. Raphaël - why? • lightweight - 20k • cross browser support • it’s easy to work with Saturday, November 13, 2010
  • 27. Raphaël - why? • lightweight - 20k • cross browser support • it’s easy to work with • made by Dmitry Baranovskiy who totally ROCKS!!! Saturday, November 13, 2010
  • 28. Raphaël - how? Saturday, November 13, 2010
  • 29. Raphaël - how? • download it Saturday, November 13, 2010
  • 30. Raphaël - how? • download it • include it in your html <script type="text/javascript" src="raphael.js"></script> Saturday, November 13, 2010
  • 31. Raphaël - how? • download it • include it in your html <script type="text/javascript" src="raphael.js"></script> • and code it! Saturday, November 13, 2010 So in your script tag you can use Raphael but wait... what does this really do? and have
  • 32. Raphaël - demos Saturday, November 13, 2010 You can check the website and see
  • 33. Raphaël - demos Saturday, November 13, 2010 a tiger
  • 34. Raphaël - demos Saturday, November 13, 2010 text rendering - helvetica example
  • 35. Raphaël - demos Saturday, November 13, 2010 a maze game
  • 36. Raphaël - demos Saturday, November 13, 2010 how to rotate images
  • 37. Raphaël - demos Saturday, November 13, 2010 well, event the logo is vector based
  • 38. Raphaël - the basics • creating your canvas Saturday, November 13, 2010
  • 39. Raphaël - the basics • creating your canvas var canvas = Raphael("container", 400, 300); Saturday, November 13, 2010 creating a canvas on element with id container, giving it width 400 and height 300
  • 40. Raphaël - the basics • creating your canvas var canvas = Raphael("container", 400, 300); var canvas = Raphael(container, 400, 300); Saturday, November 13, 2010 creating a canvas on element container (previously selected or created), giving it width 400 and height 300
  • 41. Raphaël - the basics • creating your canvas var canvas = Raphael("container", 400, 300); var canvas = Raphael(container, 400, 300); var canvas = Raphael(10, 10, 400, 300); Saturday, November 13, 2010 creating a canvas on top 10 and left 10 of your page giving it width 400 and height 300
  • 42. Raphaël - the primitives var paper = Raphael(10,10, 500, 500); paper.circle(100, 100, 50); Saturday, November 13, 2010 circle args (xcenter, ycenter, radius)
  • 43. Raphaël - the primitives • var paper = Raphael(10,10, 500, 500); paper.rect(200, 200, 100, 50); Saturday, November 13, 2010 rect args (x, y, width, height)
  • 44. Raphaël - the primitives var paper = Raphael(10,10, 500, 500); paper.rect(300, 300, 100, 50, 5); Saturday, November 13, 2010 rect with rounded corners args (x, y, width, height, radius)
  • 45. Raphaël - the primitives var paper = Raphael(10,10, 500, 500); paper.ellipse(400, 400, 40, 20); Saturday, November 13, 2010 ellipse args (xcenter, ycenter, hradius, vradius)
  • 46. Raphaël - see it happen var paper = Raphael(10, 10, 500, 500); var path = paper.path("M20 20L245 245"); Saturday, November 13, 2010 create a path - move to 20, 20 Line Till 145, 145
  • 47. Raphaël - see it happen • var paper = Raphael(10, 10, 500, 500); var path = paper.path("M20 20L245 245"); var square = paper.rect(15, 15, 10, 10); Saturday, November 13, 2010 create a rectangule
  • 48. Raphaël - see it happen var paper = Raphael(10, 10, 500, 500); var path = paper.path("M20 20L245 245"); var square = paper.rect(15, 15, 10, 10); square.animateAlong(path, 4000); Saturday, November 13, 2010 make the rectangule animate through the path
  • 49. Raphaël - see it happen var paper = Raphael(10, 10, 500, 500); var path = paper.path("M20 20L245 245"); var square = paper.rect(15, 15, 10, 10); square.animateAlong(path, 4000, function(){ setInterval(function(){ square.rotate(1); }, 10); }); Saturday, November 13, 2010 and animate rotation in the end...
  • 50. Raphaël - text • you can use raphael with cufon to enhance your site look Saturday, November 13, 2010 you can use raphael with cufon to enhance your site look - do not abuse!!!
  • 51. Raphaël - demo svg to js :) • so you use some graphic sw to make an svg Saturday, November 13, 2010 like gimp or illustrator
  • 52. Raphaël - demo svg to js :) • so you use some graphic sw to make an svg • then you want to use it with Raphaël Saturday, November 13, 2010
  • 53. Raphaël - demo svg to js :) <?xml version="1.0" encoding="utf-8"?> <!-- Generator:Adobe Illustrator 15.0.1, SVG Export Plug-In . SVGVersion: 6.00 Build 0) --> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> <svg version="1.1" id="Layer_2" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="296px" height="86.811px" viewBox="0 0 296 86.811" enable-background="new 0 0 296 86.811" xml:space="preserve"> <linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="52.7769" y1="-4.7632" x2="271.7753" y2="83.2362"> <stop offset="0" style="stop-color:#FBB31B"/> <stop offset="1" style="stop-color:#FDD858"/> </linearGradient> <path fill="url(#SVGID_1_)" d="M6.767,10.197c0,0,1.997,14.082,20.844,19.404c3.484,1.108,20.097,5.415,25.104,9.688 c0.44,0.134,17.162,10.868,20.787,14.432s14.347,11.632,19.921,16.735s11.465,12.482,12.739,12.85s3.293,0.924,4.941,0 s4.771-4.134,6.861-6.232s10.98-7.547,13.433-8.96s10.315-5.903,13.327-7.751s17.265-11.646,21.045-15.457 c3.192-1.106,6.315-2.958,8.493-3.347s25.459-4.583,27.804-1.907c3.803-0.711,9.068-2.409,10.987-3.34s6.605-3.521,6.605-3.521 s7.754-3.467,10.855-3.186c3.104,0.282,6.045,1.998,14.852-1.344c8.809-3.342,14.371-9.2,19.752-7.401s17.279,10.287,15.77,21.276 c0.26,2.564-1.074,11.543,0.408,11.562c1.48,0.02,8.861-0.249,8.699-2.838s-3.24-16.284-6.578-20.747 c-3.336-4.463-9.035-13.457-17.533-15.738c-2.246-0.005-87.95-1.256-104.335-4.177S71.715,1.003,59.395,2.384 c-3.461,0.802-22.562-0.335-32.25,2.391S6.767,10.197,6.767,10.197z"/> </svg> Saturday, November 13, 2010 when you edit and svg file in a text editor you get
  • 54. Raphaël - demo svg to js :) <?xml version="1.0" encoding="utf-8"?> <!-- Generator:Adobe Illustrator 15.0.1, SVG Export Plug-In . SVGVersion: 6.00 Build 0) --> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> <svg version="1.1" id="Layer_2" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="296px" height="86.811px" viewBox="0 0 296 86.811" enable-background="new 0 0 296 86.811" xml:space="preserve"> <linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="52.7769" y1="-4.7632" x2="271.7753" y2="83.2362"> <stop offset="0" style="stop-color:#FBB31B"/> <stop offset="1" style="stop-color:#FDD858"/> </linearGradient> <path fill="url(#SVGID_1_)" d="M6.767,10.197c0,0,1.997,14.082,20.844,19.404c3.484,1.108,20.097,5.415,25.104,9.688 c0.44,0.134,17.162,10.868,20.787,14.432s14.347,11.632,19.921,16.735s11.465,12.482,12.739,12.85s3.293,0.924,4.941,0 s4.771-4.134,6.861-6.232s10.98-7.547,13.433-8.96s10.315-5.903,13.327-7.751s17.265-11.646,21.045-15.457 c3.192-1.106,6.315-2.958,8.493-3.347s25.459-4.583,27.804-1.907c3.803-0.711,9.068-2.409,10.987-3.34s6.605-3.521,6.605-3.521 s7.754-3.467,10.855-3.186c3.104,0.282,6.045,1.998,14.852-1.344c8.809-3.342,14.371-9.2,19.752-7.401s17.279,10.287,15.77,21.276 c0.26,2.564-1.074,11.543,0.408,11.562c1.48,0.02,8.861-0.249,8.699-2.838s-3.24-16.284-6.578-20.747 c-3.336-4.463-9.035-13.457-17.533-15.738c-2.246-0.005-87.95-1.256-104.335-4.177S71.715,1.003,59.395,2.384 c-3.461,0.802-22.562-0.335-32.25,2.391S6.767,10.197,6.767,10.197z"/> </svg> Saturday, November 13, 2010 you have path info for raphaël use
  • 55. Raphaël - demo svg to js :) <?xml version="1.0" encoding="utf-8"?> <!-- Generator:Adobe Illustrator 15.0.1, SVG Export Plug-In . SVGVersion: 6.00 Build 0) --> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> <svg version="1.1" id="Layer_2" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="296px" height="86.811px" viewBox="0 0 296 86.811" enable-background="new 0 0 296 86.811" xml:space="preserve"> <linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="52.7769" y1="-4.7632" x2="271.7753" y2="83.2362"> <stop offset="0" style="stop-color:#FBB31B"/> <stop offset="1" style="stop-color:#FDD858"/> </linearGradient> <path fill="url(#SVGID_1_)" d="M6.767,10.197c0,0,1.997,14.082,20.844,19.404c3.484,1.108,20.097,5.415,25.104,9.688 c0.44,0.134,17.162,10.868,20.787,14.432s14.347,11.632,19.921,16.735s11.465,12.482,12.739,12.85s3.293,0.924,4.941,0 s4.771-4.134,6.861-6.232s10.98-7.547,13.433-8.96s10.315-5.903,13.327-7.751s17.265-11.646,21.045-15.457 c3.192-1.106,6.315-2.958,8.493-3.347s25.459-4.583,27.804-1.907c3.803-0.711,9.068-2.409,10.987-3.34s6.605-3.521,6.605-3.521 s7.754-3.467,10.855-3.186c3.104,0.282,6.045,1.998,14.852-1.344c8.809-3.342,14.371-9.2,19.752-7.401s17.279,10.287,15.77,21.276 c0.26,2.564-1.074,11.543,0.408,11.562c1.48,0.02,8.861-0.249,8.699-2.838s-3.24-16.284-6.578-20.747 c-3.336-4.463-9.035-13.457-17.533-15.738c-2.246-0.005-87.95-1.256-104.335-4.177S71.715,1.003,59.395,2.384 c-3.461,0.802-22.562-0.335-32.25,2.391S6.767,10.197,6.767,10.197z"/> </svg> Saturday, November 13, 2010 and you have color info for linear gradient
  • 56. Raphaël - demo svg to js :) var paper = Raphael(0, 0, 296, 87); Saturday, November 13, 2010 get your stage done
  • 57. Raphaël - demo svg to js :) var paper = Raphael(0, 0, 296, 87); var cheesePath = paper.path("M6.767,10.197c0,0,1.997,14.082,20.844,19.404c3.484,1.108,20.097,5.415,25.104,9.688"+ "c0.44,0.134,17.162,10.868,20.787,14.432s14.347,11.632,19.921,16.735s11.465,12.482,12.739,12.85s3.293,0.924,4.941,0"+ "s4.771-4.134,6.861-6.232s10.98-7.547,13.433-8.96s10.315-5.903,13.327-7.751s17.265-11.646,21.045-15.457"+ "c3.192-1.106,6.315-2.958,8.493-3.347s25.459-4.583,27.804-1.907c3.803-0.711,9.068-2.409,10.987-3.34s6.605-3.521,6.605-3.521"+ "s7.754-3.467,10.855-3.186c3.104,0.282,6.045,1.998,14.852-1.344c8.809-3.342,14.371-9.2,19.752-7.401s17.279,10.287,15.77,21.276"+ "c0.26,2.564-1.074,11.543,0.408,11.562c1.48,0.02,8.861-0.249,8.699-2.838s-3.24-16.284-6.578-20.747"+ "c-3.336-4.463-9.035-13.457-17.533-15.738c-2.246-0.005-87.95-1.256-104.335-4.177S71.715,1.003,59.395,2.384"+ "c-3.461,0.802-22.562-0.335-32.25,2.391S6.767,10.197,6.767,10.197z"); Saturday, November 13, 2010 put your path in it
  • 58. Raphaël - demo svg to js :) var paper = Raphael(0, 0, 296, 87); var cheesePath = paper.path("M6.767,10.197c0,0,1.997,14.082,20.844,19.404c3.484,1.108,20.097,5.415,25.104,9.688"+ "c0.44,0.134,17.162,10.868,20.787,14.432s14.347,11.632,19.921,16.735s11.465,12.482,12.739,12.85s3.293,0.924,4.941,0"+ "s4.771-4.134,6.861-6.232s10.98-7.547,13.433-8.96s10.315-5.903,13.327-7.751s17.265-11.646,21.045-15.457"+ "c3.192-1.106,6.315-2.958,8.493-3.347s25.459-4.583,27.804-1.907c3.803-0.711,9.068-2.409,10.987-3.34s6.605-3.521,6.605-3.521"+ "s7.754-3.467,10.855-3.186c3.104,0.282,6.045,1.998,14.852-1.344c8.809-3.342,14.371-9.2,19.752-7.401s17.279,10.287,15.77,21.276"+ "c0.26,2.564-1.074,11.543,0.408,11.562c1.48,0.02,8.861-0.249,8.699-2.838s-3.24-16.284-6.578-20.747"+ "c-3.336-4.463-9.035-13.457-17.533-15.738c-2.246-0.005-87.95-1.256-104.335-4.177S71.715,1.003,59.395,2.384"+ "c-3.461,0.802-22.562-0.335-32.25,2.391S6.767,10.197,6.767,10.197z"); cheesePath.attr({fill: '0-#FBB31B-#FDD858', stroke: 'none'}); Saturday, November 13, 2010 add the linear gradient ‹angle›-‹colour›[-‹colour›[:‹offset›]]*-‹colour› removed the stroke so doesn’t default to black
  • 59. Raphaël - demo svg to js :) SVG file Raphaël Saturday, November 13, 2010 raphaël version rendered in chrome now make it easy you have a php script that does this
  • 60. where are the burgers? Saturday, November 13, 2010
  • 61. where are the burgers? Saturday, November 13, 2010 here they are
  • 62. where are the burgers? Saturday, November 13, 2010 big deal... i can do that in my sleep http://zedomax.com/blog/wp-content/uploads/2009/02/burger-bed.jpg
  • 63. let’s make a game! Saturday, November 13, 2010 http://techau.tv/blog/images/GameOnExhibitionmythoughts_12815/GameOn.jpg
  • 64. let’s make a game! • using raphaël to manage graphics Saturday, November 13, 2010
  • 65. let’s make a game! • using raphaël to manage graphics • and LibSAPO.js to handle events and stuff Saturday, November 13, 2010
  • 66. LibSAPO.js - wtf? Saturday, November 13, 2010
  • 67. LibSAPO.js - wtf? • SAPO JavaScript Library Saturday, November 13, 2010
  • 68. LibSAPO.js - wtf? • SAPO JavaScript Library • previously Prototypejs based Saturday, November 13, 2010
  • 69. LibSAPO.js - wtf? • SAPO JavaScript Library • previously Prototypejs based • now Prototypejs free :) Saturday, November 13, 2010
  • 70. LibSAPO.js - wtf? • SAPO JavaScript Library • previously Prototypejs based • now Prototypejs free :) • module oriented Saturday, November 13, 2010
  • 71. LibSAPO.js - why? Saturday, November 13, 2010
  • 72. LibSAPO.js - why? • oriented to SAPO needs Saturday, November 13, 2010
  • 73. LibSAPO.js - why? • oriented to SAPO needs • feature add on demand Saturday, November 13, 2010
  • 74. LibSAPO.js - why? • oriented to SAPO needs • feature add on demand • bug solving simpler and quicker Saturday, November 13, 2010
  • 75. LibSAPO.js - why? • oriented to SAPO needs • feature add on demand • bug solving simpler and quicker • modular and performance target Saturday, November 13, 2010 to fork other js framework would be harder to code reuse and recode addons
  • 76. LibSAPO.js - how? Saturday, November 13, 2010
  • 77. LibSAPO.js - how? • all in http://js.sapo.pt/ Saturday, November 13, 2010
  • 78. LibSAPO.js - how? • all in http://js.sapo.pt/ • include /SAPO/ Saturday, November 13, 2010
  • 79. LibSAPO.js - how? • all in http://js.sapo.pt/ • include /SAPO/ • and then the module you want Saturday, November 13, 2010
  • 80. LibSAPO.js - how? • all in http://js.sapo.pt/ • include /SAPO/ • and then the module you want • in our case Saturday, November 13, 2010
  • 81. LibSAPO.js - how? • all in http://js.sapo.pt/ • include /SAPO/ • and then the module you want • in our case • /SAPO/Dom/Event/0.1/ Saturday, November 13, 2010
  • 82. LibSAPO.js - demo <div id="clickMe">click Me</div> <script type="text/javascript"> var clickMe = s$('clickMe'); SAPO.Dom.Event.observe(clickMe, 'click', function(){ alert(this.innerHTML + " - DONE & handled as you like! "); }.bindObjEvent(clickMe)); </script> Saturday, November 13, 2010 this is a simple LibSAPO.js demo for event handling
  • 84. the game! • so you have two slices of bread Saturday, November 13, 2010
  • 85. the game! • so you have two slices of bread • and 3 ingredients Saturday, November 13, 2010
  • 86. the game! • so you have two slices of bread • and 3 ingredients • now we’re making it to other people Saturday, November 13, 2010
  • 87. the game! • so you have two slices of bread • and 3 ingredients • now we’re making it to other people • so you need to put the ingredients Saturday, November 13, 2010
  • 88. the game! • so you have two slices of bread • and 3 ingredients • now we’re making it to other people • so you need to put the ingredients • in the correct amount and order Saturday, November 13, 2010
  • 89. the game! - ingredients • making the ingredients with raphaël Saturday, November 13, 2010
  • 90. the game! - ingredients • making the ingredients with raphaël • since they are js objects you can reuse it Saturday, November 13, 2010
  • 91. the game! - ingredients • making the ingredients with raphaël • since they are js objects you can reuse it • scale it Saturday, November 13, 2010
  • 92. the game! - ingredients • making the ingredients with raphaël • since they are js objects you can reuse it • scale it • and use it as many times as you want Saturday, November 13, 2010
  • 93. the game! • now lets put the elements in place and make a cute start button Saturday, November 13, 2010
  • 95. the game! • Scoreboard • with right and wrong feedback Saturday, November 13, 2010
  • 96. the game! • let’s set the events for start Saturday, November 13, 2010
  • 97. the game! • let’s set the events for start • add the elements to our burger Saturday, November 13, 2010
  • 98. the game! • let’s set the events for start • add the elements to our burger • let’s put a counter Saturday, November 13, 2010
  • 99. wanna play? Saturday, November 13, 2010 http://common1.csnimages.com/lf/1/hash/2328/2773778/1/Jaxx-Jr-Kids-Foam-Bean- Bag-Gamer-Chair.jpg
  • 100. wanna play? • http://dicode.org/codebits2010/ makingBurgers.html • http://6svz.sl.pt Saturday, November 13, 2010
  • 102. Do we still have time? Saturday, November 13, 2010 http://home.btconnect.com/brettoliver1/images/Masterclock/binary_clock.jpg
  • 103. gRaphaël Saturday, November 13, 2010 partial print screen of http://g.raphaeljs.com/
  • 104. gRaphaël • put the goodness into charts! Saturday, November 13, 2010
  • 105. gRaphaël • put the goodness into charts! • having raphael.js included Saturday, November 13, 2010
  • 106. gRaphaël • put the goodness into charts! • having raphael.js included • Download and include g.raphael.js and any (or all) of g.line.js, g.bar.js, g.dot.js and g.pie.js into your HTML page Saturday, November 13, 2010
  • 107. gRaphaël pie chart var r = Raphael(10, 50, 640, 480); r.g.piechart(320, 240, 100, [55, 20, 13, 32, 5, 1, 2]); Saturday, November 13, 2010 xcenter, ycenter, radius, data
  • 108. gRaphaël bar chart var r = Raphael(10, 50, 640, 480); r.g.barchart(10, 10, 320, 240, [[55, 20, 13, 32, 5, 1, 2]]); Saturday, November 13, 2010 x, y, w, h, data
  • 109. gRaphaël line chart var r = Raphael(10, 50, 640, 480); r.g.linechart(10, 10, 320, 240, [0, 1, 2, 3, 4, 5, 6], [55, 20, 13, 32, 5, 1, 2]); Saturday, November 13, 2010 x, y, w, h, xdata, ydata
  • 110. gRaphaël dot chart var r = Raphael(10, 50, 640, 480); r.g.dotchart(10, 10, 320, 240, [0, 1, 2, 3, 4, 5, 6], [55, 20, 13, 32, 5, 1, 2], [1, 1, 1, 1, 1, 1, 1], {max: 3}); Saturday, November 13, 2010 x, y, w, h, xdata, ydata, caption, opts (in this case dot weight)
  • 111. that’s all folks! Saturday, November 13, 2010
  • 112. Diogo Antunes JavaScript developer @ SAPO twitter: @dicode email: diogo.j.antunes@co.sapo.pt im: diogoantunes@sapo.pt http://js.sapo.pt http://libsapojs.blogs.sapo.pt http://dicode.org Saturday, November 13, 2010
  • 113. • Thanks to: • Dmitry Baranovskiy - slides inspiration and examples from the website • Hugo França - graphics for the game Saturday, November 13, 2010
  • 114. Credits Please check notes in each slide to check slide notes which reference each images i have used in this presentation Saturday, November 13, 2010