SlideShare une entreprise Scribd logo
1  sur  56
Télécharger pour lire hors ligne
Life is not static — your
designs shouldn’t be either
A primer for evolving design workflows
Presented by Dan Arbello at No Code Conference 2019
Access this presentation at danarbello.com/ncc-in-medium »
Since October 2019
Senior Front-end
Designer & Developer
Since 2005
Print & Digital
Designer
Definitions
Introduction
The Pitfalls of Static Design
The Benefits of In-Medium
Action
The Mindset (of in-medium)
The Styles (CSS)
Summary Conclusion
Resources (for later)
Q&A
Agenda
Definitions
Designers
A designer brings together sociology, psychology,
aesthetic, and contemporary trends to create
context-relevant experiences.
Developers
Builds the experience by balancing the
designs and the technology behind it
(performance, maintenance, compatibility).
Everyone
Create for the sake of as many
users as possible; all bodies,
minds, and desires.
Introduction
Static
vs
In-Medium
The Pitfalls
Of Static Design
This is what static
reviews look like.
This is what in-medium
review looks like.
The Benefits of In-Medium
Stop designing inside of a vacuum. Take the
user’s seat while you are designing, not after
development finishes.
Design like you’re the end user
Artboards = Time x 3
Trash your artboards. You don’t need
several artboards for every breakpoint per
page design.
Instead of beating around bushes
with static designs, wireframes,
and artboard-based prototypes,
use in-medium to speak the same
language as developers. You will
see visual designs, the developers
will see function and code.
Speak the same
language
Instead of waiting for development to produce what you’ve
designed, generate a functioning prototype that will feel virtually
the same as the end product. This allows:
● strategy to sell an idea with more meat before too many
resources are burned,
● clients to review and approve things without wearing
a creative’s hat,
● engineers to estimate and plan earlier,
● and design to be more thoughtful and
environment-/-platform-aware.
Show the product sooner
Your team has a great idea. But there
Are no examples in the wild, or sharing
that example isn’t an option. Help your
team express breakthrough concepts
beyond words in a proposal.
Supporting Strategy
The 10hr Visual Sales Pitch
Take preliminary findings from user data, basic
psychology, competitor research, and intuition to
ideate and develop a single, but powerful, feature
optimization or addition.
User testing,
but for real.
You don’t have to choose between
sketched wireframes, static comps,
half-static prototypes, or going to dev
quickly when it comes to testing designs.
Stop relying on the polar opposites of
options and test your actual in-medium
designs with real people.
1. Will this take developers jobs? No.
2. As a designer, will I be expected to contribute to production code?
Let’s hope not, but also maybe a little 😏
3. How do I get training beyond Webflow University? Many, many options.
4. What is the average training time? 1-2 months
5. Is this helpful for my resume? Leveling up is always a plus.
6. Is doing this with design workflows unique? So far: very.
Convincing the team
Action
The Mindset
The circle box of life
There is a semantic rhythm to the web…
in the form of boxes. Everything is a box,
but that’s okay. Clean up after yourself by
packing boxes appropriately.
The Family Nest
<!-- HTML Markup Example -->
<div class=”bird”> <!-- the parent -->
<div class=”egg”> <!-- a child -->
</div>
<div class=”egg”> <!-- a child -->
</div>
</div>
/* You can use “pseudoclasses” to do cool
things like this */
.egg:nth-child(2) {
background: blue;
}
In HTML, there are parents and children.
Children are also siblings to each other.
The browser is a flexible
window.
Internet browsers aren’t fixed into set widths
and heights foretold by breakpoints (mobile,
tablet, desktop, and so on). Rather, it is fluid
and flexible.
Use breakpoints
where it makes sense
You are not restricted to the Designer
view breakpoint UI. In CSS, this break-
point is declared with media and then
the value of the browser window width
when you want the change to start
occuring.
Inside an HTML Embed element:
Webflow breakpoint UI buttons:
<style>
@media (max-width: 768px) {
.classname-to-change {
font-size: 20px;
}
}
</style>
If… then… or else…
Design for real world content.
The world is not one size fits all, and neither
is content for the web. Ensure your designs
consider variation and scalability.
Medium limitations are
crucial to designing anything
worth experiencing.
Sketch the markup.
Sketch the design,
if you must.
Move to in-medium
to design and perfect.
Unless you are building a Webflow-hosted
instance, remember to treat your designs
as what they are: designs. Do not get stuck
in the particulars.
Don’t get it twisted
⚠
Inheritance
Styles will naturally inherit those set
on its parents. This can be used to
your advantage. Refrain from repeating
yourself and “set it and forget it”
whenever possible.
Giving a class a name
makes it unique and
reusable.
/* CSS Styles */
.apple {
sweet;
red;
tangy;
tree-fruit;
}
<!-- HTML Markup -->
<div class=”apple”>
</div>
We can start to say things
about elements (children)
of an apple./* child classes */
.apple__stem {
woody;
brown;
inedible;
}
.apple__leaf {
crisp;
green;
translucent;
}
But, not all apples are red!
/* modifier classes */
.apple--green {
green;
sour;
grandma’s;
}
.apple--rotten {
unhealthy;
smelly;
moldy;
}
<!-- HTML Markup -->
<div class=”apple apple--rotten”>
<div class=”apple__stem”></div>
<div class=”apple__leaf”></div>
</div>
Bring it all together to
create complex designs.
/* CSS Styles */
.apple--rotten {
inedible;
smelly;
Moldy;
/* nested styles */
.apple__stem {
shriveled;
black;
}
.apple__leaf {
dry;
brown;
opaque;
}
}
What this looks like
in Webflow…
Since free dragging and placement isn’t
an option we are given properties that
allow us to break out of this flow.
Positioning
Controlling the display
of flow
There are five important display values
used to specify the basics of how that
content (or its children’s content, in the
case of flex and grid) should be rendered.
Now that’s what I call display 😎
Don’t be afraid of flexbox and grid. They are the present and
continued future of layout design… and there is more to come.
Conclusion
👯‍♂ Get ahead of the curve and bring digital medium into your design
workflow. Show the product sooner to benefit your team, sales, and
user testing.
🤳 Up your design game by experiencing the design sooner,
in turn allowing for a better understanding of how your experiences
will actually be experienced in the wild.
❤ Have better relationships with your team and clients by speaking
the same language.
Three good reasons to go in-medium:
Resources
🙅‍♂Multi-user Support & Team Versioning
Multi-user collaboration — similar to how developers maintain their
collaborative and synchronous workflow — is not yet a feature of
Webflow. Until it is, only one individual can work on the site at a time.
There are two wishlist tickets up for this. Put your votes in!
● https://wishlist.webflow.com/ideas/WEBFLOW-I-39
● https://wishlist.webflow.com/ideas/WEBFLOW-I-2100
📚There’s more material in the wild…
📓 Webflow’s own 10 reasons why design
teams should use Webflow »
📓 Free learning library: Webflow
University »
📓 Download Firefox and use Inspector
when you get stuck: Demo »
📓 Design Code’s ($) Webflow Course »
📓 Nelson Abalos’ Live Streams »
📓 Get great ideas and see how the
person made it: Codepen »
📓 Extensive code syntax and
specifications: MDN web docs »
📓 Ask the world for solutions:
StackOverflow Questions »
📓 Jennifer Parson’s extensive list of
resources »
Q & A & Thank You
Access this presentation at danarbello.com/ncc-in-medium »

Contenu connexe

Tendances

How we Webflow at Webflow - No Code Conf 2019 Demo Theater
How we Webflow at Webflow - No Code Conf 2019 Demo TheaterHow we Webflow at Webflow - No Code Conf 2019 Demo Theater
How we Webflow at Webflow - No Code Conf 2019 Demo Theater
Webflow
 
Presentation
PresentationPresentation
Presentation
iae_odesk
 
web design service
web design serviceweb design service
web design service
slime44swamp
 
Microsoft Webday 2008 - Silverlight Experiences
Microsoft Webday 2008 - Silverlight ExperiencesMicrosoft Webday 2008 - Silverlight Experiences
Microsoft Webday 2008 - Silverlight Experiences
Nicklas Andersson
 

Tendances (20)

How HelloSign rebuilt their site without code - No Code Conf 2019 Demo Theater
How HelloSign rebuilt their site without code - No Code Conf 2019 Demo TheaterHow HelloSign rebuilt their site without code - No Code Conf 2019 Demo Theater
How HelloSign rebuilt their site without code - No Code Conf 2019 Demo Theater
 
How we Webflow at Webflow - No Code Conf 2019 Demo Theater
How we Webflow at Webflow - No Code Conf 2019 Demo TheaterHow we Webflow at Webflow - No Code Conf 2019 Demo Theater
How we Webflow at Webflow - No Code Conf 2019 Demo Theater
 
6 Things to Think About Before Building Your Website
6 Things to Think About Before Building Your Website6 Things to Think About Before Building Your Website
6 Things to Think About Before Building Your Website
 
Web Development Life Cycle - Tihalt
Web Development Life Cycle - TihaltWeb Development Life Cycle - Tihalt
Web Development Life Cycle - Tihalt
 
Presentation
PresentationPresentation
Presentation
 
web design service
web design serviceweb design service
web design service
 
Developing a practical HTML5 magazine workflow
Developing a practical HTML5 magazine workflowDeveloping a practical HTML5 magazine workflow
Developing a practical HTML5 magazine workflow
 
WordPress for Software Development
WordPress for Software DevelopmentWordPress for Software Development
WordPress for Software Development
 
7 Tips for Design Teams Collaborating Remotely
7 Tips for Design Teams Collaborating Remotely7 Tips for Design Teams Collaborating Remotely
7 Tips for Design Teams Collaborating Remotely
 
Interactive Design Basics
Interactive Design Basics Interactive Design Basics
Interactive Design Basics
 
Typography and Colors for GUI Designers
Typography and Colors for GUI DesignersTypography and Colors for GUI Designers
Typography and Colors for GUI Designers
 
Portfolio Pro Tips
Portfolio Pro TipsPortfolio Pro Tips
Portfolio Pro Tips
 
Microsoft Webday 2008 - Silverlight Experiences
Microsoft Webday 2008 - Silverlight ExperiencesMicrosoft Webday 2008 - Silverlight Experiences
Microsoft Webday 2008 - Silverlight Experiences
 
Frontend Development vs Backend Development | Detailed Comparison
Frontend Development vs Backend Development | Detailed ComparisonFrontend Development vs Backend Development | Detailed Comparison
Frontend Development vs Backend Development | Detailed Comparison
 
How to Transition into Product Management by Expedia Group PM
How to Transition into Product Management by Expedia Group PMHow to Transition into Product Management by Expedia Group PM
How to Transition into Product Management by Expedia Group PM
 
Building a UX Portfolio
Building a UX PortfolioBuilding a UX Portfolio
Building a UX Portfolio
 
Product Development with Spotify's Product Manager
 Product Development with Spotify's Product Manager Product Development with Spotify's Product Manager
Product Development with Spotify's Product Manager
 
Top 15 Start up Questions in Web design field
Top 15 Start up Questionsin Web design fieldTop 15 Start up Questionsin Web design field
Top 15 Start up Questions in Web design field
 
Exploring the design process #wcchi
Exploring the design process #wcchiExploring the design process #wcchi
Exploring the design process #wcchi
 
How to Plan Projects as a Product Manager by former Microsoft PM
How to Plan Projects as a Product Manager by former Microsoft PMHow to Plan Projects as a Product Manager by former Microsoft PM
How to Plan Projects as a Product Manager by former Microsoft PM
 

Similaire à Life is not static - your designs shouldn't be either - No Code Conf 2019 Workshop

Designers are from Venus - Presentationas Given to CD2
Designers are from Venus - Presentationas Given to CD2Designers are from Venus - Presentationas Given to CD2
Designers are from Venus - Presentationas Given to CD2
Chad Udell
 
Part C Developing Your Design SolutionThe Production Cycle.docx
Part C Developing Your Design SolutionThe Production Cycle.docxPart C Developing Your Design SolutionThe Production Cycle.docx
Part C Developing Your Design SolutionThe Production Cycle.docx
smile790243
 

Similaire à Life is not static - your designs shouldn't be either - No Code Conf 2019 Workshop (20)

Top Tips for Responsive eLearning Design
Top Tips for Responsive eLearning Design Top Tips for Responsive eLearning Design
Top Tips for Responsive eLearning Design
 
Designers are from Venus - Presentationas Given to CD2
Designers are from Venus - Presentationas Given to CD2Designers are from Venus - Presentationas Given to CD2
Designers are from Venus - Presentationas Given to CD2
 
The Professional Design Process
The Professional Design ProcessThe Professional Design Process
The Professional Design Process
 
Part C Developing Your Design SolutionThe Production Cycle.docx
Part C Developing Your Design SolutionThe Production Cycle.docxPart C Developing Your Design SolutionThe Production Cycle.docx
Part C Developing Your Design SolutionThe Production Cycle.docx
 
Evolving the Creative Process
Evolving the Creative ProcessEvolving the Creative Process
Evolving the Creative Process
 
Design Process | Tool 02: Scenario - Tool 03: Wireframe
Design Process | Tool 02: Scenario - Tool 03: WireframeDesign Process | Tool 02: Scenario - Tool 03: Wireframe
Design Process | Tool 02: Scenario - Tool 03: Wireframe
 
Design Learnings
Design LearningsDesign Learnings
Design Learnings
 
Ni week no designer, no problem
Ni week no designer, no problem Ni week no designer, no problem
Ni week no designer, no problem
 
UXBC #26: Lean UX
UXBC #26: Lean UXUXBC #26: Lean UX
UXBC #26: Lean UX
 
Bank Chris - Web UI Design Patterns - 2014
Bank Chris - Web UI Design Patterns - 2014Bank Chris - Web UI Design Patterns - 2014
Bank Chris - Web UI Design Patterns - 2014
 
NUX October 6th 2014 - UX in a traditional enterprise
NUX October 6th 2014 - UX in a traditional enterpriseNUX October 6th 2014 - UX in a traditional enterprise
NUX October 6th 2014 - UX in a traditional enterprise
 
Why Can't We All Just Get Along? Improving Designer/Developer Collaboration
Why Can't We All Just Get Along? Improving Designer/Developer CollaborationWhy Can't We All Just Get Along? Improving Designer/Developer Collaboration
Why Can't We All Just Get Along? Improving Designer/Developer Collaboration
 
Web UI Design Patterns 2014
Web UI Design Patterns 2014Web UI Design Patterns 2014
Web UI Design Patterns 2014
 
IBM Design Thinking field guide
IBM Design Thinking field guideIBM Design Thinking field guide
IBM Design Thinking field guide
 
Ibm design thinking field guide v3.4
Ibm design thinking field guide v3.4Ibm design thinking field guide v3.4
Ibm design thinking field guide v3.4
 
Educating on Design Symposium
Educating on Design SymposiumEducating on Design Symposium
Educating on Design Symposium
 
How to use Ai for UX UI Design | ChatGPT
How to use Ai for UX UI Design | ChatGPTHow to use Ai for UX UI Design | ChatGPT
How to use Ai for UX UI Design | ChatGPT
 
Uxpin web ui design patterns 2014
Uxpin web ui design patterns 2014Uxpin web ui design patterns 2014
Uxpin web ui design patterns 2014
 
Frameworks for Human-Centered Design
Frameworks for Human-Centered DesignFrameworks for Human-Centered Design
Frameworks for Human-Centered Design
 
Design Thinking: A Common Sense Process
Design Thinking: A Common Sense ProcessDesign Thinking: A Common Sense Process
Design Thinking: A Common Sense Process
 

Plus de Webflow

I built & sold 12 no -ode apps in 12 weeks - here's everything I learned - No...
I built & sold 12 no -ode apps in 12 weeks - here's everything I learned - No...I built & sold 12 no -ode apps in 12 weeks - here's everything I learned - No...
I built & sold 12 no -ode apps in 12 weeks - here's everything I learned - No...
Webflow
 
After Effects & Lottie in Webflow - No Code Conf 2019 Demo Theater
After Effects & Lottie in Webflow - No Code Conf 2019 Demo TheaterAfter Effects & Lottie in Webflow - No Code Conf 2019 Demo Theater
After Effects & Lottie in Webflow - No Code Conf 2019 Demo Theater
Webflow
 
Forms + Zaps = No Code Apps - No Code Conf 2019 Demo Theater
Forms + Zaps = No Code Apps - No Code Conf 2019 Demo TheaterForms + Zaps = No Code Apps - No Code Conf 2019 Demo Theater
Forms + Zaps = No Code Apps - No Code Conf 2019 Demo Theater
Webflow
 
Empower your local community to join the No Code revolution - No Code Conf 20...
Empower your local community to join the No Code revolution - No Code Conf 20...Empower your local community to join the No Code revolution - No Code Conf 20...
Empower your local community to join the No Code revolution - No Code Conf 20...
Webflow
 
What happens when anyone can make an app? - No Code Conf 2019 Demo Theater
What happens when anyone can make an app? - No Code Conf 2019 Demo TheaterWhat happens when anyone can make an app? - No Code Conf 2019 Demo Theater
What happens when anyone can make an app? - No Code Conf 2019 Demo Theater
Webflow
 
Working with APIs as a no-coder - No Code Conf 2019 Demo Theater
Working with APIs as a no-coder - No Code Conf 2019 Demo TheaterWorking with APIs as a no-coder - No Code Conf 2019 Demo Theater
Working with APIs as a no-coder - No Code Conf 2019 Demo Theater
Webflow
 
Typeform: Duct tape for entrepreneurs - No Code Conf 2019 Demo Theater
Typeform: Duct tape for entrepreneurs - No Code Conf 2019 Demo TheaterTypeform: Duct tape for entrepreneurs - No Code Conf 2019 Demo Theater
Typeform: Duct tape for entrepreneurs - No Code Conf 2019 Demo Theater
Webflow
 
Building no-code tools and applications from spreadsheets - No Code Conf 2019
Building no-code tools and applications from spreadsheets - No Code Conf 2019Building no-code tools and applications from spreadsheets - No Code Conf 2019
Building no-code tools and applications from spreadsheets - No Code Conf 2019
Webflow
 

Plus de Webflow (20)

I built & sold 12 no -ode apps in 12 weeks - here's everything I learned - No...
I built & sold 12 no -ode apps in 12 weeks - here's everything I learned - No...I built & sold 12 no -ode apps in 12 weeks - here's everything I learned - No...
I built & sold 12 no -ode apps in 12 weeks - here's everything I learned - No...
 
After Effects & Lottie in Webflow - No Code Conf 2019 Demo Theater
After Effects & Lottie in Webflow - No Code Conf 2019 Demo TheaterAfter Effects & Lottie in Webflow - No Code Conf 2019 Demo Theater
After Effects & Lottie in Webflow - No Code Conf 2019 Demo Theater
 
Forms + Zaps = No Code Apps - No Code Conf 2019 Demo Theater
Forms + Zaps = No Code Apps - No Code Conf 2019 Demo TheaterForms + Zaps = No Code Apps - No Code Conf 2019 Demo Theater
Forms + Zaps = No Code Apps - No Code Conf 2019 Demo Theater
 
Empower your local community to join the No Code revolution - No Code Conf 20...
Empower your local community to join the No Code revolution - No Code Conf 20...Empower your local community to join the No Code revolution - No Code Conf 20...
Empower your local community to join the No Code revolution - No Code Conf 20...
 
How to end youth homelessness - No Code Conf 2019 Demo Theater
How to end youth homelessness - No Code Conf 2019 Demo TheaterHow to end youth homelessness - No Code Conf 2019 Demo Theater
How to end youth homelessness - No Code Conf 2019 Demo Theater
 
What happens when anyone can make an app? - No Code Conf 2019 Demo Theater
What happens when anyone can make an app? - No Code Conf 2019 Demo TheaterWhat happens when anyone can make an app? - No Code Conf 2019 Demo Theater
What happens when anyone can make an app? - No Code Conf 2019 Demo Theater
 
Working with APIs as a no-coder - No Code Conf 2019 Demo Theater
Working with APIs as a no-coder - No Code Conf 2019 Demo TheaterWorking with APIs as a no-coder - No Code Conf 2019 Demo Theater
Working with APIs as a no-coder - No Code Conf 2019 Demo Theater
 
Typeform: Duct tape for entrepreneurs - No Code Conf 2019 Demo Theater
Typeform: Duct tape for entrepreneurs - No Code Conf 2019 Demo TheaterTypeform: Duct tape for entrepreneurs - No Code Conf 2019 Demo Theater
Typeform: Duct tape for entrepreneurs - No Code Conf 2019 Demo Theater
 
How to work faster by building your design systems with Webflow - No Code Con...
How to work faster by building your design systems with Webflow - No Code Con...How to work faster by building your design systems with Webflow - No Code Con...
How to work faster by building your design systems with Webflow - No Code Con...
 
Building 50+ products without code - No Code Conf 2019 Workshop
Building 50+ products without code - No Code Conf 2019 WorkshopBuilding 50+ products without code - No Code Conf 2019 Workshop
Building 50+ products without code - No Code Conf 2019 Workshop
 
How to build a marketplace without code - No Code Conf 2019 Workshop
How to build a marketplace without code - No Code Conf 2019 WorkshopHow to build a marketplace without code - No Code Conf 2019 Workshop
How to build a marketplace without code - No Code Conf 2019 Workshop
 
The accidental web designer - No Code Conf 2019 Workshop
The accidental web designer - No Code Conf 2019 WorkshopThe accidental web designer - No Code Conf 2019 Workshop
The accidental web designer - No Code Conf 2019 Workshop
 
The no-code tech stack: how to build a tech company with no-code tools and so...
The no-code tech stack: how to build a tech company with no-code tools and so...The no-code tech stack: how to build a tech company with no-code tools and so...
The no-code tech stack: how to build a tech company with no-code tools and so...
 
Making automation feel more human - No Code Conf 2019
Making automation feel more human - No Code Conf 2019Making automation feel more human - No Code Conf 2019
Making automation feel more human - No Code Conf 2019
 
The longstanding influence of no-code platforms: from digital participation t...
The longstanding influence of no-code platforms: from digital participation t...The longstanding influence of no-code platforms: from digital participation t...
The longstanding influence of no-code platforms: from digital participation t...
 
Building no-code tools alongside your engineering team - No Code Conf 2019
Building no-code tools alongside your engineering team - No Code Conf 2019Building no-code tools alongside your engineering team - No Code Conf 2019
Building no-code tools alongside your engineering team - No Code Conf 2019
 
Building no-code tools and applications from spreadsheets - No Code Conf 2019
Building no-code tools and applications from spreadsheets - No Code Conf 2019Building no-code tools and applications from spreadsheets - No Code Conf 2019
Building no-code tools and applications from spreadsheets - No Code Conf 2019
 
Innovate like a boss with no code - No Code Conf 2019
Innovate like a boss with no code - No Code Conf 2019Innovate like a boss with no code - No Code Conf 2019
Innovate like a boss with no code - No Code Conf 2019
 
No code for marginalized communities - No Code Conf 2019
No code for marginalized communities - No Code Conf 2019No code for marginalized communities - No Code Conf 2019
No code for marginalized communities - No Code Conf 2019
 
No code can transform businesses at any scale - No Code Conf 2019
No code can transform businesses at any scale - No Code Conf 2019No code can transform businesses at any scale - No Code Conf 2019
No code can transform businesses at any scale - No Code Conf 2019
 

Dernier

+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
?#DUbAI#??##{{(☎️+971_581248768%)**%*]'#abortion pills for sale in dubai@
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Victor Rentea
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Safe Software
 

Dernier (20)

Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
 
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
 
MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectors
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
Exploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusExploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with Milvus
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor Presentation
 

Life is not static - your designs shouldn't be either - No Code Conf 2019 Workshop

  • 1. Life is not static — your designs shouldn’t be either A primer for evolving design workflows Presented by Dan Arbello at No Code Conference 2019 Access this presentation at danarbello.com/ncc-in-medium »
  • 2. Since October 2019 Senior Front-end Designer & Developer Since 2005 Print & Digital Designer
  • 3. Definitions Introduction The Pitfalls of Static Design The Benefits of In-Medium Action The Mindset (of in-medium) The Styles (CSS) Summary Conclusion Resources (for later) Q&A Agenda
  • 5. Designers A designer brings together sociology, psychology, aesthetic, and contemporary trends to create context-relevant experiences.
  • 6. Developers Builds the experience by balancing the designs and the technology behind it (performance, maintenance, compatibility).
  • 7. Everyone Create for the sake of as many users as possible; all bodies, minds, and desires.
  • 11.
  • 12.
  • 13.
  • 14.
  • 15.
  • 16. This is what static reviews look like.
  • 17. This is what in-medium review looks like.
  • 18. The Benefits of In-Medium
  • 19. Stop designing inside of a vacuum. Take the user’s seat while you are designing, not after development finishes. Design like you’re the end user
  • 20. Artboards = Time x 3 Trash your artboards. You don’t need several artboards for every breakpoint per page design.
  • 21. Instead of beating around bushes with static designs, wireframes, and artboard-based prototypes, use in-medium to speak the same language as developers. You will see visual designs, the developers will see function and code. Speak the same language
  • 22. Instead of waiting for development to produce what you’ve designed, generate a functioning prototype that will feel virtually the same as the end product. This allows: ● strategy to sell an idea with more meat before too many resources are burned, ● clients to review and approve things without wearing a creative’s hat, ● engineers to estimate and plan earlier, ● and design to be more thoughtful and environment-/-platform-aware. Show the product sooner
  • 23. Your team has a great idea. But there Are no examples in the wild, or sharing that example isn’t an option. Help your team express breakthrough concepts beyond words in a proposal. Supporting Strategy
  • 24. The 10hr Visual Sales Pitch Take preliminary findings from user data, basic psychology, competitor research, and intuition to ideate and develop a single, but powerful, feature optimization or addition.
  • 25. User testing, but for real. You don’t have to choose between sketched wireframes, static comps, half-static prototypes, or going to dev quickly when it comes to testing designs. Stop relying on the polar opposites of options and test your actual in-medium designs with real people.
  • 26. 1. Will this take developers jobs? No. 2. As a designer, will I be expected to contribute to production code? Let’s hope not, but also maybe a little 😏 3. How do I get training beyond Webflow University? Many, many options. 4. What is the average training time? 1-2 months 5. Is this helpful for my resume? Leveling up is always a plus. 6. Is doing this with design workflows unique? So far: very. Convincing the team
  • 29. The circle box of life There is a semantic rhythm to the web… in the form of boxes. Everything is a box, but that’s okay. Clean up after yourself by packing boxes appropriately.
  • 30. The Family Nest <!-- HTML Markup Example --> <div class=”bird”> <!-- the parent --> <div class=”egg”> <!-- a child --> </div> <div class=”egg”> <!-- a child --> </div> </div> /* You can use “pseudoclasses” to do cool things like this */ .egg:nth-child(2) { background: blue; } In HTML, there are parents and children. Children are also siblings to each other.
  • 31. The browser is a flexible window. Internet browsers aren’t fixed into set widths and heights foretold by breakpoints (mobile, tablet, desktop, and so on). Rather, it is fluid and flexible.
  • 32. Use breakpoints where it makes sense You are not restricted to the Designer view breakpoint UI. In CSS, this break- point is declared with media and then the value of the browser window width when you want the change to start occuring. Inside an HTML Embed element: Webflow breakpoint UI buttons: <style> @media (max-width: 768px) { .classname-to-change { font-size: 20px; } } </style>
  • 33. If… then… or else… Design for real world content. The world is not one size fits all, and neither is content for the web. Ensure your designs consider variation and scalability.
  • 34. Medium limitations are crucial to designing anything worth experiencing.
  • 37. Move to in-medium to design and perfect.
  • 38. Unless you are building a Webflow-hosted instance, remember to treat your designs as what they are: designs. Do not get stuck in the particulars. Don’t get it twisted ⚠
  • 39.
  • 40. Inheritance Styles will naturally inherit those set on its parents. This can be used to your advantage. Refrain from repeating yourself and “set it and forget it” whenever possible.
  • 41. Giving a class a name makes it unique and reusable. /* CSS Styles */ .apple { sweet; red; tangy; tree-fruit; } <!-- HTML Markup --> <div class=”apple”> </div>
  • 42.
  • 43. We can start to say things about elements (children) of an apple./* child classes */ .apple__stem { woody; brown; inedible; } .apple__leaf { crisp; green; translucent; }
  • 44. But, not all apples are red! /* modifier classes */ .apple--green { green; sour; grandma’s; } .apple--rotten { unhealthy; smelly; moldy; }
  • 45. <!-- HTML Markup --> <div class=”apple apple--rotten”> <div class=”apple__stem”></div> <div class=”apple__leaf”></div> </div> Bring it all together to create complex designs. /* CSS Styles */ .apple--rotten { inedible; smelly; Moldy; /* nested styles */ .apple__stem { shriveled; black; } .apple__leaf { dry; brown; opaque; } }
  • 46.
  • 47. What this looks like in Webflow…
  • 48. Since free dragging and placement isn’t an option we are given properties that allow us to break out of this flow. Positioning
  • 49. Controlling the display of flow There are five important display values used to specify the basics of how that content (or its children’s content, in the case of flex and grid) should be rendered.
  • 50. Now that’s what I call display 😎 Don’t be afraid of flexbox and grid. They are the present and continued future of layout design… and there is more to come.
  • 52. 👯‍♂ Get ahead of the curve and bring digital medium into your design workflow. Show the product sooner to benefit your team, sales, and user testing. 🤳 Up your design game by experiencing the design sooner, in turn allowing for a better understanding of how your experiences will actually be experienced in the wild. ❤ Have better relationships with your team and clients by speaking the same language. Three good reasons to go in-medium:
  • 54. 🙅‍♂Multi-user Support & Team Versioning Multi-user collaboration — similar to how developers maintain their collaborative and synchronous workflow — is not yet a feature of Webflow. Until it is, only one individual can work on the site at a time. There are two wishlist tickets up for this. Put your votes in! ● https://wishlist.webflow.com/ideas/WEBFLOW-I-39 ● https://wishlist.webflow.com/ideas/WEBFLOW-I-2100
  • 55. 📚There’s more material in the wild… 📓 Webflow’s own 10 reasons why design teams should use Webflow » 📓 Free learning library: Webflow University » 📓 Download Firefox and use Inspector when you get stuck: Demo » 📓 Design Code’s ($) Webflow Course » 📓 Nelson Abalos’ Live Streams » 📓 Get great ideas and see how the person made it: Codepen » 📓 Extensive code syntax and specifications: MDN web docs » 📓 Ask the world for solutions: StackOverflow Questions » 📓 Jennifer Parson’s extensive list of resources »
  • 56. Q & A & Thank You Access this presentation at danarbello.com/ncc-in-medium »