SlideShare a Scribd company logo
by Marc Grabanski
Whirlwind Tour of
Scalable Vector Graphics
1. What is SVG? Why?
2. Overview SVG Elements
3. Embed SVG
4. SVG Features
5. DEMOs!
6. Raphael
7. Other Cool Tools
Agenda
!
!
jQuery UI Datepicker
!
MarcGrabanski.com
!
LOTS of UI Dev
Who?
Marc Grabanski
!
!
!
Publisher of:
Currently...
UI/UX Development Consultant
http://FrontendMasters.com
1. What is SVG?
HTML...
for graphics!
SVG
One SVG For All
Scaling bitmaps (jpeg/gif/png)
have to add more pixel data
!
Scaling SVG...use that same file
SVG
Zoomed
PNG
Zoomed
Modify Static
Why Use SVG?
• Scales and Retina-ready
• HTML-like elements - DOM Structure
• CSS3 and JavaScript
• Printer friendly
• Accessibility Features and SEO
• Browser Coverage
• Gzip-friendly
• More! Filters, Paths, Viewbox, etc.
SVG Advantages
2. SVG Elements
<text>
<ellipse>
<rect>
<circle>
<line>
<polygon>
<path>
Elements Walkthough
<text x="250" y="150">
Hello, out there
</text>
Hello, out there
<circle cx=50 cy=50 r=200 fill=”#56a9f6” />
center x, center y and radius
<rect x=50 y=50 width=200 height=100
fill=”#56a9f6” />
<ellipse rx="200" ry="100" fill=”#56a9f6” />
radius x, radius y
<line x1="0" y1="0" x2="100" y2="100"
stroke=”#56a9f6”
stroke-width="25" />
<polygon fill="#56a9f6"
points="350,75 379,161 469,161 397,215
423,301 350,250 277,301 303,215
231,161 321,161" />
<polyline fill="none"
stroke="blue" stroke-width="10"
points="50,375 150,375 150,325 250,325 250,375
350,375 350,250 450,250 450,375
550,375 550,175 650,175 650,375
750,375 750,100 850,100 850,375
950,375 950,25 1050,25 1050,375 1150,375" />
<path d="M100,200 C100,100 250,100 250,200
S400,300 400,200" />
Command Driven:
Moveto, Line, Curveto, Bézier Curves,
Quadratic Bézier Curves, Elliptical Arc...
Path is Incredibly
Powerful
<path d="M 475.23781,128.82439 L 474.78056,120.36535 L 472.95158,113.04943
L 471.1226,99.560705 L 470.66535,89.729927 L 468.83637,86.300584 L
467.23601,81.270889 L 467.23601,70.982869 L 467.92187,67.096282 L
466.10094,61.644615 L 496.23336,61.679886 L 496.55668,53.435202 L
497.20332,53.273541 L 499.46657,53.758523 L 501.40649,54.566825 L
502.21479,60.063281 L 503.66974,66.206379 L 505.28634,67.822984 L
510.13616,67.822984 L 510.45948,69.277928 L 516.76424,69.601249 L
516.76424,71.702835 L 521.61405,71.702835 L 521.93737,70.409551 L
523.06899,69.277928 L 525.33224,68.631286 L 526.62552,69.601249 L
529.53541,69.601249 L 533.41526,72.187816 L 538.75006,74.612723 L
541.17497,75.097705 L 541.65995,74.127742 L 543.11489,73.64276 L
543.59987,76.552649 L 546.18644,77.845933 L 546.67142,77.360951 L
547.96471,77.522612 L 547.96471,79.624198 L 550.55127,80.594161 L
553.62282,80.594161 L 555.23943,79.785858 L 558.47264,76.552649 L
561.0592,76.067668 L 561.86751,77.845933 L 562.35249,79.139216 L
563.32245,79.139216 L 564.29241,78.330914 L 573.18374,78.007593 L
574.962,81.079142 L 575.60865,81.079142 L 576.32226,79.994863 L
580.76217,79.624198 L 580.15007,81.903657 L 576.21135,83.740782 L
566.96557,87.80191 L 562.19083,89.808807 L 559.11928,92.395375 L
556.69437,95.951905 L 554.43113,99.831756 L 552.65286,100.64006 L
548.12637,105.65153 L 546.83308,105.81319 L 542.5053,108.57031 L
540.04242,111.77542 L 539.8138,114.96681 L 539.90816,123.01016 L
538.53212,124.69891 L 533.45058,128.45888 L 531.2205,134.44129 L
534.09225,136.675 L 534.77214,139.90198 L 532.9169,143.14091 L
533.08769,146.88893 L 533.45655,153.61933 L 536.4848,156.62132 L
539.8138,156.62132 L 541.70491,159.75392 L 545.08408,160.25719 L
548.94324,165.92866 L 556.03053,170.04541 L 558.17368,172.92053 L
558.84483,179.36004 L 477.63333,180.50483 L 477.29541,144.82798 L
476.83817,141.85589 L 472.72296,138.42655 L 471.57984,136.59757 L
471.57984,134.9972 L 473.63744,133.39685 L 475.00918,132.02511 L
475.23781,128.82439 z" fill="#ccc" />
<g fill="rgba(0,0,0,0.3)"
transform="rotate(-10)" stoke-width="5"
stroke="black">
<rect x=200 y=200 width=200 height=100 />
<ellipse cx=200 cy=200 rx=200 ry=50 />
</g>
Grouping
3. Embed SVG
Embed Methods
• Object Tag
• Inline (HTML5)
• As Image
• CSS Background
• Image Fallback
<object type=”image/svg+xml”
data=”test.svg”>
<img src=”test.jpg”>
</object>
SVG Object
For JS scripting you need to grab object:
element.contentDocument
Inline SVG
<!doctype html>
<html><body>
<svg width=200 height=200>
<polygon fill="#ccc" points="350,75 379,161 

469,161 397,215 423,301 350,250 277,301 303,215

231,161 321,161" />
</svg>
</body></html>
Inline SVG Support
http://caniuse.com/svg-html5
Image SRC
<!doctype html>
<html><body>
<img src=”goat.svg”>
</body></html>
JS inside SVG is disabled.
SVG as IMG SRC
http://caniuse.com/#feat=svg-img
CSS Background
<div id=”foo”></div>
<style>
#foo { background: url(goat.svg); }
</style>
SVG in CSS Background
http://caniuse.com/#feat=svg-css
http://www.svgeneration.com/
<svg>
<image
xlink:href=“svg.svg” src="svg.png"
width=“100%" height=“100%" />
</svg>
Image Fallback
Image Fall Scripts
Before IE9
Raphael JS
4. SVG Features
DOM Structure
Inspectable Elements
document.getElementById(‘star’).onclick = ...
!
<polygon id=”star” fill="#ccc"
points="350,75 379,161 469,161 397,215
423,301 350,250 277,301 303,215
231,161 321,161" />
SVG Links
<a xlink:href="http://minnesota.com">
<path d="...state of MN..." fill="#ccc" /></a>
<a xlink:href="http://wisconson.com">
<path d="...state of WI..." fill="#ccc" /></a>
http://www.anthonycalzadilla.com/i-twitty-the-fool/
CSS Animations
Great for Icons
CSS + Icons
Media Queries
Whirlwind Tour of SVG (plus RaphaelJS)
SVG Filters
http://svg-wow.org/filterEffects/chiseled.svg
Hands-On Filters
http://ie.microsoft.com/testdrive/graphics/hands-on-css3/hands-
on_svg-filter-effects.htm
SVG Filter Support
http://caniuse.com/#feat=svg-filters
Transforms
x
yaxis
Demo: Stacking Transforms
http://codepen.io/1Marc/pen/DCvFm
5. DEMOs!
6. RaphaelJS
Source
Your Sources
I learned from
about using
Raphael JS
SVG (Most Browsers) +
VML (MS IE6-8)
Graphic Credit: Dmitry
Raphael JS
- Common API for VML/SVG
- Utils make vector sane.
“The jQuery of
Vector Graphics”
Dropping IE8
SVG Works Everywhere
IE9+
Don’t Support
IE8? Use Snapsvg
• Primitives (Rectangle, Circle, etc)
• Attributes (Stroke, Dimensions, etc)
• Events (Click and Touch)
• Animation and Easing
• Sets (Grouping)
• Transforms (Rotate, Scale, etc)
Raphael JS
Transforms
in Raphael
el.transform(“T 10,10”);
- move x, y
el.transform(“S 10,10,0,0);
- scale 10,10 around 0,0
el.transform(“R 45,0,0);
- rotate 45 around 0,0 (optional)
Transforms
in Raphael
Capital T, S and R absolute
transforms
Lower case t, s and r are relative
to previous transforms.
Before Raphael
x
yaxis
transform(‘R45,100,50 T100,0’)
x
y
Absolute “T” transform
Relative to original axis
axis
x
y
Relative “t” transform
Relative to current axis
transform(‘r 20,100,50 t 100,0’)
axis
Demo: Absolute/Relative
Transforms in Raphael
http://codepen.io/1Marc/pen/rsmbF
Transforms
in Raphael
el.transform(‘...t 10, 10’);
add transform to end
el.transform(‘r45...’);
add transform before
Transforms
in Raphael
el.transform();
get the current transform object
el.matrix.split();
get results of all applied transforms
AWESOME method!
el.getBBox();
gets x, y, width and height of
bounding box
Bounding Box
7. Other Cool
Tools
jSVG
http://jsvg.swissamigos.com/
Save on http requests by packing
multiple SVGs into one
Fabric.js
Render SVG into Canvas
Convert
Bitmap to SVG
Clown Car Technique
Adaptive Images!
<svg xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 300 329" preserveAspectRatio="xMidYMid meet">
<title>Clown Car Technique</title>
<style>
svg {
background-size: 100% 100%;
background-repeat: no-repeat;
}
@media screen and (max-width: 400px) {
svg {
background-image: url(images/small.png");
}
}
...
</style>
</svg>
https://github.com/estelle/clowncar
Vectron
http://roomandboard.github.com/vectron/
Pull in SVG files with Ajax and
convert them to Raphael JS.
Future? SVG Stacks
http://simurai.com/post/20251013889/svg-stacks
Only works in Firefox (for now)
Whirlwind Tour of SVG (plus RaphaelJS)
Whirlwind Tour of SVG (plus RaphaelJS)
Marc Grabanski
@1marc
Ad

More Related Content

What's hot (20)

Progressive Enhancement 2.0 (jQuery Conference SF Bay Area 2011)
Progressive Enhancement 2.0 (jQuery Conference SF Bay Area 2011)Progressive Enhancement 2.0 (jQuery Conference SF Bay Area 2011)
Progressive Enhancement 2.0 (jQuery Conference SF Bay Area 2011)
Nicholas Zakas
 
Sara Soueidan: Styling and Animating Scalable Vector Graphics with CSS [CSSCo...
Sara Soueidan: Styling and Animating Scalable Vector Graphics with CSS [CSSCo...Sara Soueidan: Styling and Animating Scalable Vector Graphics with CSS [CSSCo...
Sara Soueidan: Styling and Animating Scalable Vector Graphics with CSS [CSSCo...
Guillaume Kossi
 
CSS in React
CSS in ReactCSS in React
CSS in React
Joe Seifi
 
Introduction to jQuery Mobile - Web Deliver for All
Introduction to jQuery Mobile - Web Deliver for AllIntroduction to jQuery Mobile - Web Deliver for All
Introduction to jQuery Mobile - Web Deliver for All
Marc Grabanski
 
AngularJS: The Bridge Between Today and Tomorrow's Web (Todd Motto)
AngularJS: The Bridge Between Today and Tomorrow's Web (Todd Motto)AngularJS: The Bridge Between Today and Tomorrow's Web (Todd Motto)
AngularJS: The Bridge Between Today and Tomorrow's Web (Todd Motto)
Future Insights
 
Илья Пухальский (EPAM Systems)
Илья Пухальский (EPAM Systems)Илья Пухальский (EPAM Systems)
Илья Пухальский (EPAM Systems)
Ontico
 
Real World Web Standards
Real World Web StandardsReal World Web Standards
Real World Web Standards
gleddy
 
Dive into HTML5: SVG and Canvas
Dive into HTML5: SVG and CanvasDive into HTML5: SVG and Canvas
Dive into HTML5: SVG and Canvas
Doris Chen
 
Girl Develop It Cincinnati: Intro to HTML/CSS Class 4
Girl Develop It Cincinnati: Intro to HTML/CSS Class 4Girl Develop It Cincinnati: Intro to HTML/CSS Class 4
Girl Develop It Cincinnati: Intro to HTML/CSS Class 4
Erin M. Kidwell
 
CSS Lessons Learned the Hard Way (Generate Conf)
CSS Lessons Learned the Hard Way (Generate Conf)CSS Lessons Learned the Hard Way (Generate Conf)
CSS Lessons Learned the Hard Way (Generate Conf)
Zoe Gillenwater
 
Responsive Websites
Responsive WebsitesResponsive Websites
Responsive Websites
Joe Seifi
 
Vector Graphics on the Web: SVG, Canvas, CSS3
Vector Graphics on the Web: SVG, Canvas, CSS3Vector Graphics on the Web: SVG, Canvas, CSS3
Vector Graphics on the Web: SVG, Canvas, CSS3
Pascal Rettig
 
TOSSUG HTML5 讀書會 新標籤與表單
TOSSUG HTML5 讀書會 新標籤與表單TOSSUG HTML5 讀書會 新標籤與表單
TOSSUG HTML5 讀書會 新標籤與表單
偉格 高
 
Responsive Web Design: Tips and Tricks
Responsive Web Design: Tips and TricksResponsive Web Design: Tips and Tricks
Responsive Web Design: Tips and Tricks
Gautam Krishnan
 
Slow kinda sucks
Slow kinda sucksSlow kinda sucks
Slow kinda sucks
Tim Wright
 
Rapid HTML Prototyping with Bootstrap - Chris Griffith
Rapid HTML Prototyping with Bootstrap - Chris GriffithRapid HTML Prototyping with Bootstrap - Chris Griffith
Rapid HTML Prototyping with Bootstrap - Chris Griffith
UXPA International
 
Bootstrap과 UI-Bootstrap
Bootstrap과 UI-BootstrapBootstrap과 UI-Bootstrap
Bootstrap과 UI-Bootstrap
WebFrameworks
 
LESS
LESSLESS
LESS
Joe Seifi
 
Next Steps in Responsive Design
Next Steps in Responsive DesignNext Steps in Responsive Design
Next Steps in Responsive Design
Justin Avery
 
Realize mais com HTML 5 e CSS 3 - 16 EDTED - RJ
Realize mais com HTML 5 e CSS 3 - 16 EDTED - RJRealize mais com HTML 5 e CSS 3 - 16 EDTED - RJ
Realize mais com HTML 5 e CSS 3 - 16 EDTED - RJ
Leonardo Balter
 
Progressive Enhancement 2.0 (jQuery Conference SF Bay Area 2011)
Progressive Enhancement 2.0 (jQuery Conference SF Bay Area 2011)Progressive Enhancement 2.0 (jQuery Conference SF Bay Area 2011)
Progressive Enhancement 2.0 (jQuery Conference SF Bay Area 2011)
Nicholas Zakas
 
Sara Soueidan: Styling and Animating Scalable Vector Graphics with CSS [CSSCo...
Sara Soueidan: Styling and Animating Scalable Vector Graphics with CSS [CSSCo...Sara Soueidan: Styling and Animating Scalable Vector Graphics with CSS [CSSCo...
Sara Soueidan: Styling and Animating Scalable Vector Graphics with CSS [CSSCo...
Guillaume Kossi
 
CSS in React
CSS in ReactCSS in React
CSS in React
Joe Seifi
 
Introduction to jQuery Mobile - Web Deliver for All
Introduction to jQuery Mobile - Web Deliver for AllIntroduction to jQuery Mobile - Web Deliver for All
Introduction to jQuery Mobile - Web Deliver for All
Marc Grabanski
 
AngularJS: The Bridge Between Today and Tomorrow's Web (Todd Motto)
AngularJS: The Bridge Between Today and Tomorrow's Web (Todd Motto)AngularJS: The Bridge Between Today and Tomorrow's Web (Todd Motto)
AngularJS: The Bridge Between Today and Tomorrow's Web (Todd Motto)
Future Insights
 
Илья Пухальский (EPAM Systems)
Илья Пухальский (EPAM Systems)Илья Пухальский (EPAM Systems)
Илья Пухальский (EPAM Systems)
Ontico
 
Real World Web Standards
Real World Web StandardsReal World Web Standards
Real World Web Standards
gleddy
 
Dive into HTML5: SVG and Canvas
Dive into HTML5: SVG and CanvasDive into HTML5: SVG and Canvas
Dive into HTML5: SVG and Canvas
Doris Chen
 
Girl Develop It Cincinnati: Intro to HTML/CSS Class 4
Girl Develop It Cincinnati: Intro to HTML/CSS Class 4Girl Develop It Cincinnati: Intro to HTML/CSS Class 4
Girl Develop It Cincinnati: Intro to HTML/CSS Class 4
Erin M. Kidwell
 
CSS Lessons Learned the Hard Way (Generate Conf)
CSS Lessons Learned the Hard Way (Generate Conf)CSS Lessons Learned the Hard Way (Generate Conf)
CSS Lessons Learned the Hard Way (Generate Conf)
Zoe Gillenwater
 
Responsive Websites
Responsive WebsitesResponsive Websites
Responsive Websites
Joe Seifi
 
Vector Graphics on the Web: SVG, Canvas, CSS3
Vector Graphics on the Web: SVG, Canvas, CSS3Vector Graphics on the Web: SVG, Canvas, CSS3
Vector Graphics on the Web: SVG, Canvas, CSS3
Pascal Rettig
 
TOSSUG HTML5 讀書會 新標籤與表單
TOSSUG HTML5 讀書會 新標籤與表單TOSSUG HTML5 讀書會 新標籤與表單
TOSSUG HTML5 讀書會 新標籤與表單
偉格 高
 
Responsive Web Design: Tips and Tricks
Responsive Web Design: Tips and TricksResponsive Web Design: Tips and Tricks
Responsive Web Design: Tips and Tricks
Gautam Krishnan
 
Slow kinda sucks
Slow kinda sucksSlow kinda sucks
Slow kinda sucks
Tim Wright
 
Rapid HTML Prototyping with Bootstrap - Chris Griffith
Rapid HTML Prototyping with Bootstrap - Chris GriffithRapid HTML Prototyping with Bootstrap - Chris Griffith
Rapid HTML Prototyping with Bootstrap - Chris Griffith
UXPA International
 
Bootstrap과 UI-Bootstrap
Bootstrap과 UI-BootstrapBootstrap과 UI-Bootstrap
Bootstrap과 UI-Bootstrap
WebFrameworks
 
Next Steps in Responsive Design
Next Steps in Responsive DesignNext Steps in Responsive Design
Next Steps in Responsive Design
Justin Avery
 
Realize mais com HTML 5 e CSS 3 - 16 EDTED - RJ
Realize mais com HTML 5 e CSS 3 - 16 EDTED - RJRealize mais com HTML 5 e CSS 3 - 16 EDTED - RJ
Realize mais com HTML 5 e CSS 3 - 16 EDTED - RJ
Leonardo Balter
 

Viewers also liked (13)

CSS/SVG Matrix Transforms
CSS/SVG Matrix TransformsCSS/SVG Matrix Transforms
CSS/SVG Matrix Transforms
Marc Grabanski
 
jQuery Essentials
jQuery EssentialsjQuery Essentials
jQuery Essentials
Marc Grabanski
 
Next generation Graphics: SVG
Next generation Graphics: SVGNext generation Graphics: SVG
Next generation Graphics: SVG
David Corbacho Román
 
Dive Into SVG
Dive Into SVGDive Into SVG
Dive Into SVG
yomotsu
 
jQuery Learning
jQuery LearningjQuery Learning
jQuery Learning
Uzair Ali
 
Static CMS for web professionals and their clients
Static CMS for web professionals and their clientsStatic CMS for web professionals and their clients
Static CMS for web professionals and their clients
Michael Frankland
 
jQTouch and Titanium
jQTouch and TitaniumjQTouch and Titanium
jQTouch and Titanium
Marc Grabanski
 
Learning from the Best jQuery Plugins
Learning from the Best jQuery PluginsLearning from the Best jQuery Plugins
Learning from the Best jQuery Plugins
Marc Grabanski
 
HTML5 Essentials
HTML5 EssentialsHTML5 Essentials
HTML5 Essentials
Marc Grabanski
 
Pulse cms Nagoya meetup workshop
Pulse cms Nagoya meetup workshopPulse cms Nagoya meetup workshop
Pulse cms Nagoya meetup workshop
Michael Frankland
 
jQuery Introduction
jQuery IntroductionjQuery Introduction
jQuery Introduction
Arwid Bancewicz
 
How to think like a startup
How to think like a startupHow to think like a startup
How to think like a startup
Loic Le Meur
 
SlideShare 101
SlideShare 101SlideShare 101
SlideShare 101
Amit Ranjan
 
CSS/SVG Matrix Transforms
CSS/SVG Matrix TransformsCSS/SVG Matrix Transforms
CSS/SVG Matrix Transforms
Marc Grabanski
 
Dive Into SVG
Dive Into SVGDive Into SVG
Dive Into SVG
yomotsu
 
jQuery Learning
jQuery LearningjQuery Learning
jQuery Learning
Uzair Ali
 
Static CMS for web professionals and their clients
Static CMS for web professionals and their clientsStatic CMS for web professionals and their clients
Static CMS for web professionals and their clients
Michael Frankland
 
Learning from the Best jQuery Plugins
Learning from the Best jQuery PluginsLearning from the Best jQuery Plugins
Learning from the Best jQuery Plugins
Marc Grabanski
 
Pulse cms Nagoya meetup workshop
Pulse cms Nagoya meetup workshopPulse cms Nagoya meetup workshop
Pulse cms Nagoya meetup workshop
Michael Frankland
 
How to think like a startup
How to think like a startupHow to think like a startup
How to think like a startup
Loic Le Meur
 
Ad

Similar to Whirlwind Tour of SVG (plus RaphaelJS) (20)

SVG 101
SVG 101SVG 101
SVG 101
Sang-Min Yoon
 
Unlocking the full potential of SVG
Unlocking the full potential of SVGUnlocking the full potential of SVG
Unlocking the full potential of SVG
Magdalena Magličić
 
Web Vector Graphics
Web Vector GraphicsWeb Vector Graphics
Web Vector Graphics
Dmitry Baranovskiy
 
Intro to SVG
Intro to SVGIntro to SVG
Intro to SVG
All Things Open
 
Biological modeling, powered by angular js
Biological modeling, powered by angular jsBiological modeling, powered by angular js
Biological modeling, powered by angular js
Gil Fink
 
RWD myth busting @ Topconf
RWD myth busting @ TopconfRWD myth busting @ Topconf
RWD myth busting @ Topconf
Jon Arne Sæterås
 
HTML5 Multimedia
HTML5 MultimediaHTML5 Multimedia
HTML5 Multimedia
Siddhi
 
Biological Modeling, Powered by AngularJS
Biological Modeling, Powered by AngularJSBiological Modeling, Powered by AngularJS
Biological Modeling, Powered by AngularJS
Gil Fink
 
SVG and the web
SVG and the webSVG and the web
SVG and the web
Ken Shoufer Web Design
 
SVG introduction
SVG   introductionSVG   introduction
SVG introduction
SathyaseelanK1
 
Fastandbeautiful mobilewarsaw
Fastandbeautiful mobilewarsawFastandbeautiful mobilewarsaw
Fastandbeautiful mobilewarsaw
Doug Sillars
 
Fastandbeautiful krakow
Fastandbeautiful krakowFastandbeautiful krakow
Fastandbeautiful krakow
Doug Sillars
 
Feed your inner data scientist. JS Visualization Tools
Feed your inner data scientist.  JS Visualization ToolsFeed your inner data scientist.  JS Visualization Tools
Feed your inner data scientist. JS Visualization Tools
Doug Mair
 
Html5 more than just html5 v final
Html5  more than just html5 v finalHtml5  more than just html5 v final
Html5 more than just html5 v final
Lohith Goudagere Nagaraj
 
RaphaëlJS magic
RaphaëlJS magicRaphaëlJS magic
RaphaëlJS magic
Kseniya Redunova
 
Svcc 2013-css3-and-mobile
Svcc 2013-css3-and-mobileSvcc 2013-css3-and-mobile
Svcc 2013-css3-and-mobile
Oswald Campesato
 
Fastandbeautiful devdayseu
Fastandbeautiful devdayseuFastandbeautiful devdayseu
Fastandbeautiful devdayseu
Doug Sillars
 
CSS3: Are you experienced?
CSS3: Are you experienced?CSS3: Are you experienced?
CSS3: Are you experienced?
Denise Jacobs
 
Bootstrap Workout 2015
Bootstrap Workout 2015Bootstrap Workout 2015
Bootstrap Workout 2015
Rob Davarnia
 
Web Design Tools
Web Design ToolsWeb Design Tools
Web Design Tools
lillianabe
 
Unlocking the full potential of SVG
Unlocking the full potential of SVGUnlocking the full potential of SVG
Unlocking the full potential of SVG
Magdalena Magličić
 
Biological modeling, powered by angular js
Biological modeling, powered by angular jsBiological modeling, powered by angular js
Biological modeling, powered by angular js
Gil Fink
 
HTML5 Multimedia
HTML5 MultimediaHTML5 Multimedia
HTML5 Multimedia
Siddhi
 
Biological Modeling, Powered by AngularJS
Biological Modeling, Powered by AngularJSBiological Modeling, Powered by AngularJS
Biological Modeling, Powered by AngularJS
Gil Fink
 
Fastandbeautiful mobilewarsaw
Fastandbeautiful mobilewarsawFastandbeautiful mobilewarsaw
Fastandbeautiful mobilewarsaw
Doug Sillars
 
Fastandbeautiful krakow
Fastandbeautiful krakowFastandbeautiful krakow
Fastandbeautiful krakow
Doug Sillars
 
Feed your inner data scientist. JS Visualization Tools
Feed your inner data scientist.  JS Visualization ToolsFeed your inner data scientist.  JS Visualization Tools
Feed your inner data scientist. JS Visualization Tools
Doug Mair
 
Fastandbeautiful devdayseu
Fastandbeautiful devdayseuFastandbeautiful devdayseu
Fastandbeautiful devdayseu
Doug Sillars
 
CSS3: Are you experienced?
CSS3: Are you experienced?CSS3: Are you experienced?
CSS3: Are you experienced?
Denise Jacobs
 
Bootstrap Workout 2015
Bootstrap Workout 2015Bootstrap Workout 2015
Bootstrap Workout 2015
Rob Davarnia
 
Web Design Tools
Web Design ToolsWeb Design Tools
Web Design Tools
lillianabe
 
Ad

Recently uploaded (20)

Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...
Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...
Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...
BookNet Canada
 
ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes Partner Innovation Updates for May 2025ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes
 
Big Data Analytics Quick Research Guide by Arthur Morgan
Big Data Analytics Quick Research Guide by Arthur MorganBig Data Analytics Quick Research Guide by Arthur Morgan
Big Data Analytics Quick Research Guide by Arthur Morgan
Arthur Morgan
 
Quantum Computing Quick Research Guide by Arthur Morgan
Quantum Computing Quick Research Guide by Arthur MorganQuantum Computing Quick Research Guide by Arthur Morgan
Quantum Computing Quick Research Guide by Arthur Morgan
Arthur Morgan
 
Mobile App Development Company in Saudi Arabia
Mobile App Development Company in Saudi ArabiaMobile App Development Company in Saudi Arabia
Mobile App Development Company in Saudi Arabia
Steve Jonas
 
Complete Guide to Advanced Logistics Management Software in Riyadh.pdf
Complete Guide to Advanced Logistics Management Software in Riyadh.pdfComplete Guide to Advanced Logistics Management Software in Riyadh.pdf
Complete Guide to Advanced Logistics Management Software in Riyadh.pdf
Software Company
 
Drupalcamp Finland – Measuring Front-end Energy Consumption
Drupalcamp Finland – Measuring Front-end Energy ConsumptionDrupalcamp Finland – Measuring Front-end Energy Consumption
Drupalcamp Finland – Measuring Front-end Energy Consumption
Exove
 
AI and Data Privacy in 2025: Global Trends
AI and Data Privacy in 2025: Global TrendsAI and Data Privacy in 2025: Global Trends
AI and Data Privacy in 2025: Global Trends
InData Labs
 
Designing Low-Latency Systems with Rust and ScyllaDB: An Architectural Deep Dive
Designing Low-Latency Systems with Rust and ScyllaDB: An Architectural Deep DiveDesigning Low-Latency Systems with Rust and ScyllaDB: An Architectural Deep Dive
Designing Low-Latency Systems with Rust and ScyllaDB: An Architectural Deep Dive
ScyllaDB
 
Into The Box Conference Keynote Day 1 (ITB2025)
Into The Box Conference Keynote Day 1 (ITB2025)Into The Box Conference Keynote Day 1 (ITB2025)
Into The Box Conference Keynote Day 1 (ITB2025)
Ortus Solutions, Corp
 
Andrew Marnell: Transforming Business Strategy Through Data-Driven Insights
Andrew Marnell: Transforming Business Strategy Through Data-Driven InsightsAndrew Marnell: Transforming Business Strategy Through Data-Driven Insights
Andrew Marnell: Transforming Business Strategy Through Data-Driven Insights
Andrew Marnell
 
Linux Support for SMARC: How Toradex Empowers Embedded Developers
Linux Support for SMARC: How Toradex Empowers Embedded DevelopersLinux Support for SMARC: How Toradex Empowers Embedded Developers
Linux Support for SMARC: How Toradex Empowers Embedded Developers
Toradex
 
Manifest Pre-Seed Update | A Humanoid OEM Deeptech In France
Manifest Pre-Seed Update | A Humanoid OEM Deeptech In FranceManifest Pre-Seed Update | A Humanoid OEM Deeptech In France
Manifest Pre-Seed Update | A Humanoid OEM Deeptech In France
chb3
 
The Evolution of Meme Coins A New Era for Digital Currency ppt.pdf
The Evolution of Meme Coins A New Era for Digital Currency ppt.pdfThe Evolution of Meme Coins A New Era for Digital Currency ppt.pdf
The Evolution of Meme Coins A New Era for Digital Currency ppt.pdf
Abi john
 
SAP Modernization: Maximizing the Value of Your SAP S/4HANA Migration.pdf
SAP Modernization: Maximizing the Value of Your SAP S/4HANA Migration.pdfSAP Modernization: Maximizing the Value of Your SAP S/4HANA Migration.pdf
SAP Modernization: Maximizing the Value of Your SAP S/4HANA Migration.pdf
Precisely
 
Linux Professional Institute LPIC-1 Exam.pdf
Linux Professional Institute LPIC-1 Exam.pdfLinux Professional Institute LPIC-1 Exam.pdf
Linux Professional Institute LPIC-1 Exam.pdf
RHCSA Guru
 
Increasing Retail Store Efficiency How can Planograms Save Time and Money.pptx
Increasing Retail Store Efficiency How can Planograms Save Time and Money.pptxIncreasing Retail Store Efficiency How can Planograms Save Time and Money.pptx
Increasing Retail Store Efficiency How can Planograms Save Time and Money.pptx
Anoop Ashok
 
Dev Dives: Automate and orchestrate your processes with UiPath Maestro
Dev Dives: Automate and orchestrate your processes with UiPath MaestroDev Dives: Automate and orchestrate your processes with UiPath Maestro
Dev Dives: Automate and orchestrate your processes with UiPath Maestro
UiPathCommunity
 
Procurement Insights Cost To Value Guide.pptx
Procurement Insights Cost To Value Guide.pptxProcurement Insights Cost To Value Guide.pptx
Procurement Insights Cost To Value Guide.pptx
Jon Hansen
 
Cyber Awareness overview for 2025 month of security
Cyber Awareness overview for 2025 month of securityCyber Awareness overview for 2025 month of security
Cyber Awareness overview for 2025 month of security
riccardosl1
 
Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...
Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...
Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...
BookNet Canada
 
ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes Partner Innovation Updates for May 2025ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes
 
Big Data Analytics Quick Research Guide by Arthur Morgan
Big Data Analytics Quick Research Guide by Arthur MorganBig Data Analytics Quick Research Guide by Arthur Morgan
Big Data Analytics Quick Research Guide by Arthur Morgan
Arthur Morgan
 
Quantum Computing Quick Research Guide by Arthur Morgan
Quantum Computing Quick Research Guide by Arthur MorganQuantum Computing Quick Research Guide by Arthur Morgan
Quantum Computing Quick Research Guide by Arthur Morgan
Arthur Morgan
 
Mobile App Development Company in Saudi Arabia
Mobile App Development Company in Saudi ArabiaMobile App Development Company in Saudi Arabia
Mobile App Development Company in Saudi Arabia
Steve Jonas
 
Complete Guide to Advanced Logistics Management Software in Riyadh.pdf
Complete Guide to Advanced Logistics Management Software in Riyadh.pdfComplete Guide to Advanced Logistics Management Software in Riyadh.pdf
Complete Guide to Advanced Logistics Management Software in Riyadh.pdf
Software Company
 
Drupalcamp Finland – Measuring Front-end Energy Consumption
Drupalcamp Finland – Measuring Front-end Energy ConsumptionDrupalcamp Finland – Measuring Front-end Energy Consumption
Drupalcamp Finland – Measuring Front-end Energy Consumption
Exove
 
AI and Data Privacy in 2025: Global Trends
AI and Data Privacy in 2025: Global TrendsAI and Data Privacy in 2025: Global Trends
AI and Data Privacy in 2025: Global Trends
InData Labs
 
Designing Low-Latency Systems with Rust and ScyllaDB: An Architectural Deep Dive
Designing Low-Latency Systems with Rust and ScyllaDB: An Architectural Deep DiveDesigning Low-Latency Systems with Rust and ScyllaDB: An Architectural Deep Dive
Designing Low-Latency Systems with Rust and ScyllaDB: An Architectural Deep Dive
ScyllaDB
 
Into The Box Conference Keynote Day 1 (ITB2025)
Into The Box Conference Keynote Day 1 (ITB2025)Into The Box Conference Keynote Day 1 (ITB2025)
Into The Box Conference Keynote Day 1 (ITB2025)
Ortus Solutions, Corp
 
Andrew Marnell: Transforming Business Strategy Through Data-Driven Insights
Andrew Marnell: Transforming Business Strategy Through Data-Driven InsightsAndrew Marnell: Transforming Business Strategy Through Data-Driven Insights
Andrew Marnell: Transforming Business Strategy Through Data-Driven Insights
Andrew Marnell
 
Linux Support for SMARC: How Toradex Empowers Embedded Developers
Linux Support for SMARC: How Toradex Empowers Embedded DevelopersLinux Support for SMARC: How Toradex Empowers Embedded Developers
Linux Support for SMARC: How Toradex Empowers Embedded Developers
Toradex
 
Manifest Pre-Seed Update | A Humanoid OEM Deeptech In France
Manifest Pre-Seed Update | A Humanoid OEM Deeptech In FranceManifest Pre-Seed Update | A Humanoid OEM Deeptech In France
Manifest Pre-Seed Update | A Humanoid OEM Deeptech In France
chb3
 
The Evolution of Meme Coins A New Era for Digital Currency ppt.pdf
The Evolution of Meme Coins A New Era for Digital Currency ppt.pdfThe Evolution of Meme Coins A New Era for Digital Currency ppt.pdf
The Evolution of Meme Coins A New Era for Digital Currency ppt.pdf
Abi john
 
SAP Modernization: Maximizing the Value of Your SAP S/4HANA Migration.pdf
SAP Modernization: Maximizing the Value of Your SAP S/4HANA Migration.pdfSAP Modernization: Maximizing the Value of Your SAP S/4HANA Migration.pdf
SAP Modernization: Maximizing the Value of Your SAP S/4HANA Migration.pdf
Precisely
 
Linux Professional Institute LPIC-1 Exam.pdf
Linux Professional Institute LPIC-1 Exam.pdfLinux Professional Institute LPIC-1 Exam.pdf
Linux Professional Institute LPIC-1 Exam.pdf
RHCSA Guru
 
Increasing Retail Store Efficiency How can Planograms Save Time and Money.pptx
Increasing Retail Store Efficiency How can Planograms Save Time and Money.pptxIncreasing Retail Store Efficiency How can Planograms Save Time and Money.pptx
Increasing Retail Store Efficiency How can Planograms Save Time and Money.pptx
Anoop Ashok
 
Dev Dives: Automate and orchestrate your processes with UiPath Maestro
Dev Dives: Automate and orchestrate your processes with UiPath MaestroDev Dives: Automate and orchestrate your processes with UiPath Maestro
Dev Dives: Automate and orchestrate your processes with UiPath Maestro
UiPathCommunity
 
Procurement Insights Cost To Value Guide.pptx
Procurement Insights Cost To Value Guide.pptxProcurement Insights Cost To Value Guide.pptx
Procurement Insights Cost To Value Guide.pptx
Jon Hansen
 
Cyber Awareness overview for 2025 month of security
Cyber Awareness overview for 2025 month of securityCyber Awareness overview for 2025 month of security
Cyber Awareness overview for 2025 month of security
riccardosl1
 

Whirlwind Tour of SVG (plus RaphaelJS)