SlideShare a Scribd company logo
SVG
Scalable Vector Graphics
Im Vergleich zu z.B. PNG
firefox.png firefox.svg
128px × 128px ∞
21KB 46KB
21KB (gzip) 13KB (gzip)
Browser-Support
3.0+ 4.0+ 3.1+ 9.0+ 9.0+
XML-Dokument
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg"
version="1.0"
width="400"
height="300">
<!-- ... -->
</svg>
Basiselemente
Rechtecke
<rect width="66" height="30" x="21" y="32" />
Kreise & Ellipsen
<circle cx="75" cy="100" r="50" />
<ellipse cx="200" cy="150" rx="150" ry="75" />
Pfade
<path d="M 12,10 C 39,22 43,50 9,52 C 62,114 101,145 101,145" />
Polygone
<path d="M 149,109 L 149,127 L 127,144 L 140,172 L 188,167 L 191,119 z" />
Text
Hello, out there
<text x="0" y="150" font-family="Verdana" font-size="45" fill="#c4a000">
Hello, out there
</text>
Styling der Elemente
Stroke
<circle ... stroke="red" stroke-width="5" stroke-opacity=".5" />
Gestrichelte Linien
<rect ... stroke="blue" stroke-width="2" stroke-dashArray="20 5 10 5" />
Fill
<circle ... fill="rgb(255, 0, 0)" fill-opacity=".5" />
Styling auch per CSS
svg rect.someClass {
stroke: #0283c5;
stroke-width: 6;
fill: none;
}
Transformationen
Verschiebung
<rect x="150" y="100" width="100" height="100" ... transform="translate(-50 -50)" />
Skalierung
<rect x="150" y="100" width="100" height="100" ... transform="scale(.75, 1.5)" />
Skalierung um das Zentrum
<!-- translate(-centerX*(factor-1), -centerY*(factor-1))
scale(factor) -->
<rect x="150" y="100" width="100" height="100"
transform="translate(50, -75) scale(.75, 1.5)" />
Drehung
<rect x="150" y="100" width="100" height="100" ... transform="rotate(45 200 150)" />
Scherung X-Achse
<rect x="150" y="100" width="100" height="100" ... transform="skewX(20)" />
Scherung Y-Achse
<rect x="150" y="100" width="100" height="100" ... transform="skewY(20)" />
Gruppierung von Elementen
<g stroke="#73d216" fill="#73d216" fill-opacity="0.4" stroke-width="3" fill="none"
<rect x="0" y="0" width="200" stroke="red" height="150" />
<ellipse cx="200" cy="150" rx="150" ry="75" />
</g>
Clipping
<clipPath id="clip-box">
<rect x="0" y="0" width="200" height="150" />
</clipPath>
<ellipse cx="200" cy="150" rx="150" ry="75" />
SVG in HTML einbinden
Inline im HTML verwenden
<h1>Some Heading</h1>
<div class="image">
<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="400" height="300"
<!-- ... -->
</svg>
</div>
Als externes Bild einbinden
<img class="logo" src="myImage.svg" />
Als CSS-Background einbinden
.logo {
display: block;
text-indent: -9999px;
width: 279px;
height: 132px;
background: url(brainbits.svg);
background-size: 279px 132px;
}
Fallback z.B. mit Modernizr
<img class="logo" src="myImage.svg" data-fallback="myImage.png" />
<script>
</script>
if (!Modernizr.svg) {
var image = $("img.logo");
image.attr("src", image.data('fallback'));
}
Viel Spass!
http://slidesha.re/W1R1Nh
Referenzen
Scalable Vector Graphics – Wikipedia
W3C Recommendation – SVG 1.1 2nd Edition
O'Reily SVG Essentials – Transforming the
Coordinate System
CSS-Tricks – Using SVG
© 2013 Michael van Engelshoven
© 2013 Michael van Engelshoven

More Related Content

PPTX
Лаб.р №1 "Фабрика Blockly"
PPTX
Css grid-layout
PDF
Having fun with graphs, a short introduction to D3.js
PDF
Introduction to d3js (and SVG)
PDF
Drawing a Circle Three Ways: Generating Graphics for the Web
PPTX
[3] 프로세싱과 아두이노
PDF
KEY
Subversion Schulung
Лаб.р №1 "Фабрика Blockly"
Css grid-layout
Having fun with graphs, a short introduction to D3.js
Introduction to d3js (and SVG)
Drawing a Circle Three Ways: Generating Graphics for the Web
[3] 프로세싱과 아두이노
Subversion Schulung

Similar to Svg Basics (20)

KEY
SVG overview
PPTX
Фабрика "Blockly" (исправлено)
PDF
HTML 5 گرافیک دو بعدی در
PPTX
PPTX
SVG, CSS3, and D3 for Beginners
PDF
Setting the Stage for SVG Animation
PDF
CANVAS, SVG, WebGL, CSS3, WebEvent
PPTX
Html5 SVG
PDF
Algorithms in CSS v3.1.0 | CSS Day 2019
PDF
SVG (Devoxx 2011, 2011-NOV-14)
PDF
D3 svg & angular
KEY
CSS3 Takes on the World
PDF
Web base - SVG
PPTX
SVG and the web
PDF
Flash Camp - Degrafa & FXG
PPT
STC Summit 2015 Hypergraphics for visual-first help
KEY
Web accessibility
PDF
MOConf'13: WebNotBombs: Optimize this
PPTX
SVG overview
Фабрика "Blockly" (исправлено)
HTML 5 گرافیک دو بعدی در
SVG, CSS3, and D3 for Beginners
Setting the Stage for SVG Animation
CANVAS, SVG, WebGL, CSS3, WebEvent
Html5 SVG
Algorithms in CSS v3.1.0 | CSS Day 2019
SVG (Devoxx 2011, 2011-NOV-14)
D3 svg & angular
CSS3 Takes on the World
Web base - SVG
SVG and the web
Flash Camp - Degrafa & FXG
STC Summit 2015 Hypergraphics for visual-first help
Web accessibility
MOConf'13: WebNotBombs: Optimize this
Ad

Recently uploaded (20)

PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PDF
Assigned Numbers - 2025 - Bluetooth® Document
PDF
NewMind AI Weekly Chronicles - August'25-Week II
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PDF
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
PPTX
A Presentation on Artificial Intelligence
PPTX
Machine Learning_overview_presentation.pptx
PDF
Getting Started with Data Integration: FME Form 101
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PDF
Spectral efficient network and resource selection model in 5G networks
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PDF
A comparative analysis of optical character recognition models for extracting...
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PPTX
Group 1 Presentation -Planning and Decision Making .pptx
PDF
gpt5_lecture_notes_comprehensive_20250812015547.pdf
PPTX
1. Introduction to Computer Programming.pptx
PDF
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PPTX
Tartificialntelligence_presentation.pptx
PDF
Advanced methodologies resolving dimensionality complications for autism neur...
“AI and Expert System Decision Support & Business Intelligence Systems”
Assigned Numbers - 2025 - Bluetooth® Document
NewMind AI Weekly Chronicles - August'25-Week II
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
A Presentation on Artificial Intelligence
Machine Learning_overview_presentation.pptx
Getting Started with Data Integration: FME Form 101
Reach Out and Touch Someone: Haptics and Empathic Computing
Spectral efficient network and resource selection model in 5G networks
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
A comparative analysis of optical character recognition models for extracting...
Dropbox Q2 2025 Financial Results & Investor Presentation
Group 1 Presentation -Planning and Decision Making .pptx
gpt5_lecture_notes_comprehensive_20250812015547.pdf
1. Introduction to Computer Programming.pptx
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
Tartificialntelligence_presentation.pptx
Advanced methodologies resolving dimensionality complications for autism neur...
Ad

Svg Basics