Graphics: Millennial eSports
CodePen Collection: codepen.io/collection/nGzZxb/
Slides: robynlarsen.ca/speaking/svg
former nuclear engineer turned front end developer
globe trotting, adrenaline junkie, biohacking & naps
SVGs & Designer - Project goals
Collaboration: Exporting SVG - The bones of our SVGs
SVG code for Beginner - Export and optimization methods
FED SVG Workflow - The cost of building it right
Advanced SVG - The fun filters that nobody knows about
Determine your goals: Stagnant or Animated?
Communicate. Communicate early.
Sketch and Illustrator
Exporting SVG Illustrator for
Responsive Web Design in 2 minutes
defaults write com.bohemiancoding.sketch3
exportCompactSVG -bool yes
Source: robots.thoughtBot.com
Canvas is infinite
1) Add SVGs to their own artboards prior to exporting
2) Select svg layers (can't use dotted arrow select, will need to select in the layers panel)
3) Flatten - removes the inline transform/translate/rotate attributes
icon-
& logo-
prefix for svg icons<path>
elements<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="33px" height="33px" viewBox="0 0 33 33"
version="1.1" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 3.4.2 (15857) - http://www.bohemiancoding.com/sketch -->
<defs></defs>
<g id="Welcome" stroke="none" stroke-width="1"
fill="none" fill-rule="evenodd" stroke-linecap="round"
stroke-linejoin="round">
<g id="Contact-Mobile-Portrait" transform="translate(-263.000000, -22.000000)" stroke="#FFFFFF">
<g id="Mobile-Menu-+-Page-1" transform="translate(-2333.000000, 0.000000)">
<g id="Mobile-Menu">
<g id="Group" transform="translate(2333.000000, 0.000000)">
<g id="Stroke-5-+-Stroke-7" transform="translate(263.000000, 22.000000)">
<g>
<path d="M0.825,0.825 L32.175,32.175" id="Stroke-5"></path>
<path d="M32.175,0.825 L0.825,32.175" id="Stroke-7"></path>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
</svg>
<svg viewBox="0 0 33 33">
<g>
<path d="M0.825,0.825 L32.175,32.175"
id="Stroke-5"></path>
<path d="M32.175,0.825 L0.825,32.175"
id="Stroke-7"></path>
</g>
</svg>
Go back to your project goals.
Less control over the final SVG code.
Node based tool for optimizing SVG graphical files
npm install -g svgo
svgo --pretty folder/
svgo --pretty file.svg
svgo --pretty file.svg file.min.svg
At this point we have been given the assets and optimized what we wanted to in the SVG code.
Defaults - forces the svg to only take up 100% of the parent container
svg, img, iframe, video {
max-width: 100%;
}
<use>
in production?Social icons, logo soup & duplicate images
<use />
<svg class="logo logo-footer"
viewBox="0 0 120 34">
<use xlink:href="#lightening" x="0" y="0"
width="70" height="34" />
</svg>
<svg class="logo logo-full"
viewBox="0 0 120 34" >
<use xlink:href="#logo" />
</svg>
<svg class="svg svg-glow" style="fill:#61bde3;"
viewBox="0 0 137.3 137.3" >
<use xlink:href="#svgBadge" />
</svg>
social.svg.js
Social.js
icon-
& logo-
prefix for svg icons & logos, respectivelywidth
and height
attributes<use>
when you cansvgo --pretty icons/
For all you math nerds, you will see standard deviation, keySplines, cubic bezier and k-not values.
Default path
with fill color
<svg class="svg svg-glow" style="fill:#61bde3;"
viewBox="0 0 137.3 137.3">
<use xlink:href="#svgBadge"/>
</svg>
fePointLight
<!-- Spotlight in a single spot -->
<filter id="spotlight">
<!--Blur effect-->
<feGaussianBlur stdDeviation="2" result="blur1" />
<!--Lighting effect-->
<feSpecularLighting result="spec1" in="blur1"
specularExponent="100"
lighting-color="rgba(255, 255, 255, 0.1)">
<!--Light source effect-->
<fePointLight x="60" y="69" z="100"/>
</feSpecularLighting>
<!--Composition of inputs-->
<feComposite in="SourceGraphic" in2="spec1"
operator="arithmetic"
k1="0" k2="1" k3="1" k4="0" />
</filter>
fePointLight
- CodePen
<!-- Spotlight in a single spot -->
<filter id="spotlight">
<!--Blur effect-->
<feGaussianBlur stdDeviation="2" result="blur1" />
<!--Lighting effect-->
<feSpecularLighting result="spec1" in="blur1"
specularExponent="100"
lighting-color="rgba(255, 255, 255, 0.1)">
<!--Light source effect-->
<fePointLight x="60" y="69" z="100"/>
</feSpecularLighting>
<!--Composition of inputs-->
<feComposite in="SourceGraphic" in2="spec1"
operator="arithmetic"
k1="0" k2="1" k3="1" k4="0" />
</filter>
feComposite
<filter id="spotlight">
<!--Blur effect-->
<feGaussianBlur stdDeviation="2" result="spec1" />
<!--Composition of inputs-->
<feComposite in="SourceGraphic" in2="spec1"
operator="arithmetic"
k1="0" k2="1" k3="1" k4="0" />
</filter>
<feComposite in="SourceGraphic" in2="spec1"
operator="arithmetic"
k1="0" k2="1" k3="1" k4="0" />
operator=arithmetic applies
result = k1*i1*i2 + k2*i1 + k3*i2 + k4
feComposite, feGaussianBlur, animate
<!-- Glowing Pulse Animation -->
<filter id="glow">
<!--Blur effect-->
<feGaussianBlur stdDeviation="7" result="blurElement">
<animate attributeName="stdDeviation"
from="0" to="7" dur="1s"
repeatCount="indefinite"
values="0; 7; 7; 0;"
keyTimes="0; 0.45; 0.75; 1"
keySplines=".42 0 1 1;
0 0 .59 1;
.42 0 1 1;
0 0 .59 1;
.42 0 1 1;
0 0 .59 1;
.42 0 1 1;
0 0 .59 1;"/>
</feGaussianBlur>
<!--Composition of inputs-->
<feComposite in="SourceGraphic" in2="blurElement" operator="arithmetic"
k1="0" k2="1" k3="1" k4="0" />
</filter>
feComposite, feGaussianBlur, animate
<!-- Light travelling across the icon -->
<filter id="spotlight-moving">
<!--Blur effect-->
<feGaussianBlur stdDeviation="2" result="blur1" />
<!--Lighting effect-->
<feSpecularLighting result="spec1" in="blur1"
specularExponent="100"
lighting-color="rgba(255, 255, 255, 0.1)">
<!--Light source effect-->
<fePointLight x="40" y="100" z="50">
<animate attributeName="x" from="20" to="200"
dur="4s" repeatCount="indefinite"
// defining the position of the light
values="-10; 100; 170; 200; -10;"
keyTimes="0; 0.15; 0.45; 0.75; 1"
//keySplines defines set of Bezier control points
keySplines=".42 0 1 1;
0 0 .59 1;
.42 0 1 1;
0 0 .59 1;
.42 0 1 1;
0 0 .59 1;
.42 0 1 1;
0 0 .59 1;" />
</fePointLight>
</feSpecularLighting>
<!--Composition of inputs-->
<feComposite in="SourceGraphic" in2="spec1"
operator="arithmetic"
k1="0" k2="1" k3="1" k4="0" />
</filter>
feSpecularLighting
<!-- Light travelling across the icon -->
<filter id="spotlight-moving">
<!--Blur effect-->
<feGaussianBlur stdDeviation="2" result="blur1" />
<!--Lighting effect-->
<feSpecularLighting result="spec1" in="blur1" specularExponent="100"
lighting-color="rgba(255, 255, 255, 0.1)">
<!--Light source effect-->
<fePointLight x="40" y="100" z="50">
<animate attributeName="x" from="20" to="200"
dur="4s" repeatCount="indefinite"
// defining the posiiton of the light
values="-10; 100; 170; 200; -10;"
keyTimes="0; 0.15; 0.45; 0.75; 1"
// keySplines defines set of Bezier control points
keySplines=".42 0 1 1;
0 0 .59 1;
.42 0 1 1;
0 0 .59 1;
.42 0 1 1;
0 0 .59 1;
.42 0 1 1;
0 0 .59 1;" />
</fePointLight>
</feSpecularLighting>
<!--Composition of inputs-->
<feComposite in="SourceGraphic" in2="spec1"
operator="arithmetic"
k1="0" k2="1" k3="1" k4="0" />
</filter>
<animate />
var blurNode = document
.getElementsByTagName("feGaussianBlur");
tl = new TimelineMax({repeat: -1, yoyo:true})
tl.to(blurNode, .5, {attr:{stdDeviation:0}})
.to(blurNode, .5, {attr:{stdDeviation:7}})
.to(blurNode, .5, {attr:{stdDeviation:0}});
def embedded_svg(filename, options = {})
assets = Rails.application.assets
file = assets.find_asset(filename).source.force_encoding("UTF-8")
doc = Nokogiri::HTML::DocumentFragment.parse file
svg = doc.at_css "svg"
if options[:class].present?
svg["class"] = options[:class]
end
raw doc
end
= embedded_svg "svg/ralph.svg", class: "ralph-logo"
Slides: robynlarsen.ca/speaking/svg/
CodePen Collection: codepen.io/collection/nGzZxb/
I like to visualize the SVG canvas with a viewBox the same way as Google maps. You can zoom in to a specific region or area in Google maps; that area will be the only area visible, scaled up, inside the viewport of the browser. However, you know that the rest of the map is still there, but itâs not visible because it extends beyond the boundaries of the viewport - itâs being clipped out.
@robyn_larsen