From fd5a25382207800458eefbc6a2ece63159773325 Mon Sep 17 00:00:00 2001 From: Mario Souto Date: Thu, 28 Jan 2021 21:37:35 -0300 Subject: [PATCH] Update db.json --- db.json | 59 +++++++++++++++++++++++++++++++++++++-------------------- 1 file changed, 38 insertions(+), 21 deletions(-) diff --git a/db.json b/db.json index 3fcac5d0..c38aa33e 100644 --- a/db.json +++ b/db.json @@ -1,45 +1,62 @@ { - "bg": "https://i2.wp.com/css-tricks.com/wp-content/uploads/2017/06/css-is-awesome-scaled.jpg?resize=1536%2C1208&ssl=1", - "title": "Quiz CSS da Alura", - "description": "Teste os seus conhecimentos sobre CSS e vamos ver quantos layouts você vai deixar de quebrar", + "bg": "https://www.hitalent.co/rails/active_storage/blobs/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaHBBMmJDQXc9PSIsImV4cCI6bnVsbCwicHVyIjoiYmxvYl9pZCJ9fQ==--1452099b706ad7d079f7a3a4dd5d702ebeeae45f/HiTalent.png", + "title": "Quiz JavaScript #AluraQuiz", + "description": "Um quiz rápido sobre o mundo do JavaScript", "questions": [ { - "image": "https://media.giphy.com/media/xUOxf3yDKCuwpOlT3i/giphy.gif", - "title": "Como fazer um seletor por id via CSS?", - "description": "Essa é pra aquecer", - "answer": 2, + "image": "https://media.giphy.com/media/j5P0DQIOf4PonLi55G/giphy.gif", + "title": "Qual a diferença entre = , == e === ?", + "description": "Pergunta fácil em!", + "answer": 1, "alternatives": [ - ".elemento", - "*elemento", - "#elemento", - "%elemento" + "São a mesma coisa", + "O = significa atribuição de valor. Já == verifica a igualdade do valor, enquanto === verifica valor e tipo de variável." ] }, { - "image": "https://media.giphy.com/media/13FrpeVH09Zrb2/giphy.gif", - "title": "Como fazer um background gradiente com css?", - "description": "Faz tempo em haha", + "image": "https://media.giphy.com/media/Ie2Hs3A0uJRtK/giphy.gif", + "title": "Que tipos de dados são suportados em JavaScript?", + "description": "E agora? Você sabe?", "answer": 0, "alternatives": [ - "background: linear-gradient(#e66465, #9198e5);", - "background: gradient(#e66465, #9198e5);" + "Number, String, Undefined, Null e Bool.", + "Int, String, Undefined, Null e Bool." + ] + }, + { + "image": "https://media.giphy.com/media/iI4vhciiVh2b3j9sgo/giphy.gif", + "title": "Qual a diferença de window e global?", + "answer": 1, + "alternatives": [ + "São a mesma coisa", + "window é o escopo global no browser, e global no node" + ] + }, + { + "image": "https://media.giphy.com/media/iI4vhciiVh2b3j9sgo/giphy.gif", + "title": "Qual a forma antiga de trabalhar com AJAX na Web?", + "answer": 1, + "alternatives": [ + "JSONHttpRequest", + "XMLHttpRequest", + "fetch" ] } ], "external": [ + "https://aluraquiz-base.alura-challenges.vercel.app/", "https://aluraquiz-css.omariosouto.vercel.app/", - "https://aluraquiz-javascript.omariosouto.vercel.app/", "https://aluraquiz-devsoutinho.omariosouto.vercel.app/" ], "theme": { "colors": { - "primary": "#0d47a1", - "secondary": "#29b6f6", - "mainBg": "#171B35", + "primary": "#222222", + "secondary": "#e8be3f", + "mainBg": "#213f4e", "contrastText": "#FFFFFF", "wrong": "#FF5722", "success": "#4CAF50" }, "borderRadius": "4px" } -} \ No newline at end of file +}