Slide 1

Slide 1 text

Constructing Modern UIs with SVG Tim G. Thomas • @timgthomas

Slide 2

Slide 2 text

Today Basics Integration Advanced SVG

Slide 3

Slide 3 text

Basics

Slide 4

Slide 4 text

SVG Scalable Vector Graphics

Slide 5

Slide 5 text

SVG Scalable Vector Graphics

Slide 6

Slide 6 text

SVG Scalable Vector Graphics

Slide 7

Slide 7 text

SVG Scalable Vector Graphics

Slide 8

Slide 8 text

SVG Scalable Vector Graphics

Slide 9

Slide 9 text

SVG Scalable Vector Graphics

Slide 10

Slide 10 text

Why SVG? Non-flow-based layout Visual effects Why not?

Slide 11

Slide 11 text

Uses for SVG Glyphs + Icons Visualizations Components Full Apps

Slide 12

Slide 12 text

Creating SVG By hand Apps Procedurally Libraries

Slide 13

Slide 13 text

Creating SVG By hand Apps Procedurally Libraries

Slide 14

Slide 14 text

Creating SVG By hand Apps Procedurally Libraries

Slide 15

Slide 15 text

Creating SVG By hand Apps Procedurally Libraries

Slide 16

Slide 16 text

Creating SVG By hand Apps Procedurally Libraries

Slide 17

Slide 17 text

Creating SVG By hand Apps Procedurally Libraries svgjs.com snapsvg.io d3js.org

Slide 18

Slide 18 text

Integration

Slide 19

Slide 19 text

Integration Inline Reference

Slide 20

Slide 20 text

Integrating SVG Inline

Slide 21

Slide 21 text

Integrating SVG Inline with React render() { return (
); },

Slide 22

Slide 22 text

Integrating SVG References .logo { background-image: url('logo.svg'); }

Slide 23

Slide 23 text

Integrating SVG

Slide 24

Slide 24 text

Styling SVG Attributes CSS

Slide 25

Slide 25 text

Styling SVG Attributes

Slide 26

Slide 26 text

Styling SVG Attributes

Slide 27

Slide 27 text

Styling SVG Attributes

Slide 28

Slide 28 text

Styling SVG Attributes

Slide 29

Slide 29 text

Styling SVG CSS rect { fill: #6495ed; stroke: #ff1493; }

Slide 30

Slide 30 text

Advanced SVG

Slide 31

Slide 31 text

Advanced SVG Blend Modes Line Drawing Symbols Clipping Filters A Real-World App

Slide 32

Slide 32 text

Advanced SVG Blend Modes

Slide 33

Slide 33 text

Advanced SVG Blend Modes

Slide 34

Slide 34 text

Advanced SVG Blend Modes .tint { mix-blend-mode: color; }

Slide 35

Slide 35 text

Advanced SVG Blend Modes Branding Photo Filters UI Tricks

Slide 36

Slide 36 text

Advanced SVG Line Drawing

Slide 37

Slide 37 text

Advanced SVG Line Drawing

Slide 38

Slide 38 text

Advanced SVG Line Drawing Create Path Stroke with Dash Add Dash Offset+Width Animate!

Slide 39

Slide 39 text

Advanced SVG Line Drawing Create Path Stroke with Dash Add Dash Offset+With Animate!

Slide 40

Slide 40 text

Advanced SVG Line Drawing Create Path Stroke with Dash Add Dash Offset+Width Animate!

Slide 41

Slide 41 text

Advanced SVG Line Drawing Create Path Stroke with Dash Add Dash Offset+Width Animate!

Slide 42

Slide 42 text

Advanced SVG Line Drawing Create Path Stroke with Dash Add Dash Offset+Width Animate!

Slide 43

Slide 43 text

Advanced SVG Line Drawing Create Path Stroke with Dash Add Dash Offset+Width Animate!

Slide 44

Slide 44 text

Advanced SVG Line Drawing path { stroke-dasharray: 750, 1000; } @keyframes handwriting { 0% { stroke-offset: 0%; } 100% { stroke-offset: 100%; } }

Slide 45

Slide 45 text

Advanced SVG Line Drawing path { stroke-dasharray: 750, 1000; } @keyframes handwriting { 0% { stroke-offset: 0%; } 100% { stroke-offset: 100%; } }

Slide 46

Slide 46 text

Advanced SVG Line Drawing Use Sparingly!

Slide 47

Slide 47 text

Advanced SVG Symbols

Slide 48

Slide 48 text

Advanced SVG Symbols

Slide 49

Slide 49 text

Advanced SVG Symbols

Slide 50

Slide 50 text

Advanced SVG Symbols

Slide 51

Slide 51 text

Advanced SVG Symbols Reduce Duplication Composition Glyphs/Icons

Slide 52

Slide 52 text

Advanced SVG Clipping + Masking

Slide 53

Slide 53 text

Advanced SVG Clipping + Masking

Slide 54

Slide 54 text

Advanced SVG Clipping + Masking

Slide 55

Slide 55 text

Advanced SVG Clipping + Masking

Slide 56

Slide 56 text

Advanced SVG Clipping + Masking

Slide 57

Slide 57 text

Advanced SVG Clipping + Masking Use sparingly!

Slide 58

Slide 58 text

Advanced SVG Filters

Slide 59

Slide 59 text

Advanced SVG Filters NDC

Slide 60

Slide 60 text

Advanced SVG Filters NDC

Slide 61

Slide 61 text

Advanced SVG Filters NDC

Slide 62

Slide 62 text

Advanced SVG Filters NDC

Slide 63

Slide 63 text

Advanced SVG Filters

Slide 64

Slide 64 text

Advanced SVG Filters

Slide 65

Slide 65 text

Advanced SVG A Real-World App

Slide 66

Slide 66 text

Custom Shapes Blend Modes Clip Paths

Slide 67

Slide 67 text

Custom Shapes Blend Modes Clip Paths

Slide 68

Slide 68 text

Further Research developer.mozilla.org/docs/Web/SVG css-tricks.com/mega-list-svg-information bit.ly/ndcoslo-svg

Slide 69

Slide 69 text

Thanks for coming! @timgthomas • timgthomas.com