Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Responsive web design
Search
brutiko
July 14, 2012
Design
0
30
Responsive web design
brutiko
July 14, 2012
Tweet
Share
More Decks by brutiko
See All by brutiko
Tipografia
brutiko
1
55
Kiehls - Plano de marketing
brutiko
0
110
Like a boss - Designer empreendedor
brutiko
0
73
NODUS
brutiko
1
380
Intercâmbio Universidade de Aveiro - Portugal
brutiko
1
96
Other Decks in Design
See All in Design
ビジネス成果を最大限に発揮するPORTFOLIO
ataxi1003
0
510
Portfolio 齋藤明敏 Hiroyuki Saito_守秘義務あり
crearedesign
0
280
Spectrum Tokyo_ デザイナーが事業責任者になってみた
shin_2
0
130
アプリ360onWeb使い方と裏ワザ?紹介!
ikejun360
0
250
【最新】マズロー安達の弟子実績(1期-4期の26人分)
maslow_akkun
0
2k
株式会社Muture_ソーシャル推進事業
muture
PRO
0
140
Findyのプロデチームの 歩みとこれから
satty9556
0
260
「キャリア」のプロダクトをつくる私の「キャリア」への向き合い方 / JAM de NIGHT DESIGN SESSION Vol3
visional_engineering_and_design
1
190
組織で取り組むアクセシビリティのはじめ方
masakiohsumi
0
180
Installing and Running decksh/pdfdeck
ajstarks
1
840
地理院地図をもっと楽しく!れきちず新機能のご紹介
hjmkth
1
130
Cyber Heart Online Book
hjnasby
0
180
Featured
See All Featured
Improving Core Web Vitals using Speculation Rules API
sergeychernyshev
18
1.1k
Rebuilding a faster, lazier Slack
samanthasiow
83
9.2k
Designing for humans not robots
tammielis
253
25k
Rails Girls Zürich Keynote
gr2m
95
14k
How to Think Like a Performance Engineer
csswizardry
26
1.9k
Embracing the Ebb and Flow
colly
87
4.8k
Creating an realtime collaboration tool: Agile Flush - .NET Oxford
marcduiker
31
2.2k
Java REST API Framework Comparison - PWX 2021
mraible
33
8.8k
Fantastic passwords and where to find them - at NoRuKo
philnash
52
3.4k
How to Create Impact in a Changing Tech Landscape [PerfNow 2023]
tammyeverts
53
2.9k
GraphQLとの向き合い方2022年版
quramy
49
14k
Code Reviewing Like a Champion
maltzj
525
40k
Transcript
DESIGN RESPONSIVO Uma abordagem abrangente N jeitos BH 2012
BRUNA KOCHI @brutiko
[email protected]
ROGER ROSSI @_utgardloki
[email protected]
A OFICINA HISTÓRICO PRODUÇÃO BOAS PRÁTICAS
1990 Criado para distribuição e colaboração de informação Tim-Berners-Lee lança
o protocolo http (Hypertext Transfer Protocol) HISTÓRICO DO DESIGN NA WEB
HISTÓRICO DO DESIGN NA WEB
None
None
Designers começaram a trazer toda a experiência p/ web Necessidade
de diferenciar a web HISTÓRICO DO DESIGN NA WEB *
HISTÓRICO DO DESIGN NA WEB tipografia | diagramação | contraste
| posicionamento
HISTÓRICO DO DESIGN NA WEB tipografia | diagramação | contraste
| posicionamento
HISTÓRICO DO DESIGN NA WEB Passaram a aplicar o mesmo
estilo na Web
HISTÓRICO DO DESIGN NA WEB Layout em tabelas
1998 Layouts de forma semântica, uso de tabelas apenas para
dados tabulares Movimento Tableless Html propósito original HISTÓRICO DO DESIGN NA WEB
HISTÓRICO DO DESIGN NA WEB Css Zen Garden
None
None
None
None
WEB 1.0 quase não existia a interação com o usuário
Conteúdo de leitura HISTÓRICO DO DESIGN NA WEB
TECNOLOGIA poucos dispositivos acesso limitado à internet HISTÓRICO DO DESIGN
NA WEB internet discada
Primeiros computadores pessoais | 80s
PC
PC Monitor LCD |
MicroTac Motorola | 1996
Nokia 9000 | 1996
Smartphones | 2012
Tablets | 2012
imac | 2012
Novo ipad | 2012
Resoluções 1024x768px
Resoluções 1024x768px Smartphone Tablet Netbook Desktop 320px 768px 1024px 1600px
ACESSOS Uso 24 horas Todo mundo conectado HISTÓRICO DO DESIGN
NA WEB Acessibilidade
None
WEB 2.0 Uma nova forma de uso, o usuário agora
é participativo Web como plataforma HISTÓRICO DO DESIGN NA WEB Pensar num layout dinâmico
None
None
DESIGN RESPONSIVO Exibir todo conteúdo em diferentes dispositivos, adequado e
acessível
DESIGN RESPONSIVO
None
None
RESPONSIVO flexível media queries boas práticas DESIGN
None
None
GOLDEN RULE TARGET ÷ CONTEXTO = DIMENSÃO
ESTRUTURA target ÷ contexto = dimensão Trocar as larguras fixas
por porcentagem 1000px = 100% 600px ÷ 1000 = 60% 340px ÷ 1000 = 34%
600px 340px 1000px
TIPOGRAFIA target ÷ contexto = dimensão target tamanho da fonte
que vc quer redefinir (em px) contexto tamanho da fonte base, que veio do body (16 px no caso) dimensão resultado em
22px / 24px 18px / 20px 14px / 20px
Tipografia - medidas base body { background: #fafafc; font-family: Georgia,
'Palatino', serif; font-size: 16px; height: 100%; line-height: 18px; }
body { background: #fafafc; font-family: Georgia, 'Palatino', serif; font-size: 100%;
height: 100%; line-height: 1.5em; } /* font-size: 16px; Trocar para porcentagem */ /* 100% equivale a 16px na maioria dos browsers */ Tipografia - medidas base
#content article p { font-size: 14px; line-height: 20px; } #content
article p { font-size: 0.875em; /* 14px ÷ 16px = 0.875em */ line-height: 1.25em; /* 20px ÷ 14px = 1.42857em */ } Tipografia - redefinindo medidas
MEDIA QUERIES all, braille, embossed, handheld, print, projection, screen, speech,
tty, tv TIPOS
MEDIA QUERIES @media screen and (max-width: 1200px) { /* insert
styles here */ } <link rel=”stylesheet” href=”wide.css” media=”screen and (min-width: 1200px)”/> ou USO
BOAS PRÁTICAS Para conseguir funcionar html5 e css3 no IE
ie7-js, ie8-js do google modernizer.js HTML5 e CSS3
BOAS PRÁTICAS Plugin de auxílio de grid 960.js GRID
BOAS PRÁTICAS Sempre vai baixar o tamanho menor de imagem,
verifica sem tem e permite uma resolução maior e carrega a maior. O ruim é ter 2 requests. https://github.com/teleject/hisrc Hisrc
BOAS PRÁTICAS Funciona como a tag video <picture alt="description"> <source
src="small.jpg"> <source src="medium.jpg"> <source src="large.jpg"> Define um source p/ cada tamanho de imagem. Tag picture
BOAS PRÁTICAS Melhora contínua IE FIREFOX CHROME ... Progressive Enhancement
BOAS PRÁTICAS Sempre melhor adicionar do que subtrair Esboce seu
layout para as versões Mobile First
REFERÊNCIAS http://mediaqueri.es/ http://www.evolutionoftheweb.com/ http://dabblet.com/ http://css-tricks.com/which-responsive-images-solution-should-you-use/
RESPONSIVO adaptável flexível otimizado DESIGN