SlideShare uma empresa Scribd logo
1 de 81
Baixar para ler offline
O que posso aprender com
desenhos e jogos em CSS?
Giulia Cardieri
Oi, eu sou a Giulia Cardieri
Mestranda na UFSCar Sorocaba
Desenvolvedora Front-end na Toptal
Tenho um dinossauro, o Dinokiki
@ggiulia
Pesquisa sobre
desenhos e jogos
em CSS
60 Participantes
Você já ouviu falar
sobre ilustrações
e/ou jogos feitos
somente com
HTML + CSS?
77% Sim
23% Não
Você já fez alguma
ilustração com
CSS?
77% Não
Você já fez algum
tipo de jogo
usando somente
CSS?
97% Não
"Ai, nem vou fazer
esse troços de só
CSS pq não vai
ajudar em nada
minha carreira "
Não é bem assim...
100% afirmam que
ilustrações/jogos em
CSS ajudou a aprender
alguma coisa!!!
Ajudou a aprender
o que?
86% Seletores CSS
71% Pseudo-classes
93% Limites e uso
de tags HTML
100%
Posicionamento CSS
100% Exercitar a
criatividade
"Mas você tem que
ser super criativa
pra isso! "
Dica: reproduzir
em CSS um
desenho que já
existe
Ideias legais pakas
dribbble.com
Mas mesmo com
um desenho do
Dribble eu não sei
como começar!
Ciclo de um desenho em CSS
1. Separar o desenho em formas geométricas básicas
Exemplos: círculo, quadrado, retângulo, oval...
2. Criar uma <div> de HTML para representar um pedaço da
imagem
3. Adicionar uma Classe para cada div/pedaço da imagem
4. Estilizar com CSS a Classe
5. Repetir esse processo até seu desenho ficar completo
PS: Border e
Box-Shadow
também podem
ajudar
<div class="cabeca"></div>
CSS da Cabeça
.cabeca {
background-color: #777777;
border-radius: 100%;
height: 200px;
width: 200px;
}
<div class="olho"></div>
<div class="centro_do_olho"></div>
CSS dos olhos
.olho {
background-color: #FFF;
border-radius: 100%;
height: 20px;
width: 20px;
}
As próximas seriam
divs para as orelhas.
Ou nariz...
Você decide
"Legal, mas eu não
tenho ideia de
como fazer um jogo
só com CSS "
Um jogo da
memória espacial
Sem imagens
Sem JavaScript
Sem
Pré-processadores
CSS
Responsivo
Eita, isso é
jogável?
Como você
desenhou isso?
Vamos entender
um pouco a lógica
do jogo...
Como clicar sem
ter um evento JS
onClick?
Label + Checkbox =
LabelCheckbox
Label
Checkbox
Checkbox com display: none;
<input id="mars" type="checkbox" />
<label for="mars" class="card card--mars">
<section class="card__front">
<!-- estrelas →
</section>
<section class="card__back">
<section class="mars"></section>
<p>Mars</p>
</section>
</label>
<input id="mars" type="checkbox" />
<label for="mars" class="card card--mars">
<section class="card__front">
<!-- estrelas →
</section>
<section class="card__back">
<section class="mars"></section>
<p>Mars</p>
</section>
</label>
<input id="mars" type="checkbox" />
<label for="mars" class="card card--mars">
<section class="card__front">
<!-- estrelas →
</section>
<section class="card__back">
<section class="mars"></section>
<p>Mars</p>
</section>
</label>
<input id="mars" type="checkbox" />
<label for="mars" class="card card--mars">
<section class="card__front">
<!-- estrelas →
</section>
<section class="card__back">
<section class="mars"></section>
<p>Mars</p>
</section>
</label>
Clicou no card ->
O checkbox muda seu estado ->
Troca a parte visível do card
if (estrelas == visível) -> esconde as
estrelas e mostra a terra
Lógica:
if (estrelas == visível) -> esconde as estrelas e mostra a terra
CSS
/* esconde estrelas */
#terra1:checked ~ .card--terra1 .card__front {
display: none;
}
/* mostra terra */
#terra1:checked ~ .card--terra1 .card__back {
display: flex;
}
else if (terra == visivel) -> mostra
estrelas e esconde a terra
Lógica:
else if (terra == visivel) -> mostra estrelas e esconde terra
(estado inicial)
CSS:
/* esconder a terra - volta ao estado inicial, antes da checkbox ser selecionada */
.card__back {
display: none;
}
/* mostra as estrelas */
.card__front {
display: flex;
}
if (terra1 == visivel) && (terra2 ==
visivel) -> deixa o fundo mais
escuro
Lógica:
If (terra1 == visivel) && (terra2 == visivel) -> deixa o fundo mais
escuro
CSS:
#terra1:checked + #terra2:checked ~ .card--terra1 .card__back,
#terra1:checked + #terra2:checked ~ .card--terra2 .card__back {
background-color: var(--cor-mais-escura);
}
O que você
aprendeu fazendo
esse jogo e esses
desenhos?
1. CSS Grid
2. Variáveis em
CSS
3. Limites das tags
input (checkbox) e
label
4. Animações e
transições em CSS
E provavelmente
mais...
E ai? Já se
convenceu a fazer
um jogo ou
ilustração em CSS?
Links e talks legais pra isso
Jogos indo além do simples CSS - Fernanda Bernardo -
https://www.slideshare.net/fehbernardo/jogos-30 (slides)
https://www.facebook.com/codamosclub/videos/762136873993567/?t=2639 (vídeo)
A Beginner's Guide to Pure CSS images - Michael Mangialardi
https://codepen.io/mikemang/post/a-beginner-s-guide-to-pure-css-images (texto)
An Intermediate Guide to Pure CSS images - Michael Mangialardi
https://codepen.io/mikemang/post/an-intermediate-guide-to-pure-css-images (texto)
Obrigada!
ggiulia
giulia.cardieri@gmail.com

Mais conteúdo relacionado

Destaque

AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfmarketingartwork
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024Neil Kimberley
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)contently
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024Albert Qian
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsKurio // The Social Media Age(ncy)
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Search Engine Journal
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summarySpeakerHub
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next Tessa Mero
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentLily Ray
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best PracticesVit Horky
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project managementMindGenius
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...RachelPearson36
 
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...Applitools
 
12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at Work12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at WorkGetSmarter
 

Destaque (20)

AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
 
Skeleton Culture Code
Skeleton Culture CodeSkeleton Culture Code
Skeleton Culture Code
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
 
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
 
12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at Work12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at Work
 
ChatGPT webinar slides
ChatGPT webinar slidesChatGPT webinar slides
ChatGPT webinar slides
 
More than Just Lines on a Map: Best Practices for U.S Bike Routes
More than Just Lines on a Map: Best Practices for U.S Bike RoutesMore than Just Lines on a Map: Best Practices for U.S Bike Routes
More than Just Lines on a Map: Best Practices for U.S Bike Routes
 

O que eu posso aprender com desenhos e jogos em CSS?