-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
65f5623
commit 362e9a9
Showing
5 changed files
with
80 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<!DOCTYPE html> | ||
<html lang="pt"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Quiz de Propriedade Intelectual</title> | ||
<!-- Bootstrap CSS --> | ||
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet"> | ||
</head> | ||
<body> | ||
<div class="container mt-5"> | ||
<div id="quiz-container" class="mb-3"> | ||
<!-- As perguntas do quiz serão injetadas aqui pelo JavaScript --> | ||
</div> | ||
<div id="resultado-container" style="display: none;"> | ||
<!-- O resultado do quiz será exibido aqui --> | ||
</div> | ||
</div> | ||
|
||
<!-- Link para o arquivo JavaScript do quiz --> | ||
<script src="quiz.js"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
const quizData = [ | ||
{ | ||
pergunta: "O que é mais importante para você em propriedade intelectual?", | ||
opcoes: ["Proteção de ideias", "Liberdade de expressão", "Acesso à informação", "Inovação tecnológica"], | ||
proximo: [1, 2, 3, 4] | ||
}, | ||
{ | ||
pergunta: "Você acha que patentes incentivam a inovação?", | ||
opcoes: ["Sim", "Não", "Depende do contexto"], | ||
proximo: [5, 6, 7] | ||
}, | ||
// Continuação das perguntas e definição dos caminhos baseados nas opções | ||
{ | ||
pergunta: "Qual a sua opinião sobre direitos autorais na internet?", | ||
opcoes: ["São necessários", "São restritivos", "Dependem da situação"], | ||
proximo: [8, 9, 10] | ||
}, | ||
// Exemplos de resultados baseados em caminhos específicos | ||
{ | ||
resultado: "Você valoriza a proteção de ideias e inovação. A propriedade intelectual é essencial para garantir que inovadores tenham os incentivos corretos." | ||
}, | ||
{ | ||
resultado: "Você acredita na liberdade de expressão e no acesso à informação como pilares da sociedade. É importante encontrar um equilíbrio entre proteção e acesso." | ||
}, | ||
// Adicione mais resultados conforme necessário | ||
]; | ||
|
||
function mostrarPerguntaOuResultado(indice) { | ||
const elemento = quizData[indice]; | ||
const quizContainer = document.getElementById('quiz-container'); | ||
let html = ""; | ||
|
||
if(elemento.pergunta) { | ||
html += `<div class="mb-4"><h2>${elemento.pergunta}</h2></div>`; | ||
elemento.opcoes.forEach((opcao, indiceOpcao) => { | ||
html += `<button class="btn btn-info btn-lg btn-block" onclick="selecionarOpcao(${indice}, ${indiceOpcao})">${opcao}</button>`; | ||
}); | ||
} else if(elemento.resultado) { | ||
document.getElementById('resultado-container').style.display = 'block'; | ||
quizContainer.style.display = 'none'; | ||
document.getElementById('resultado-container').innerHTML = `<div class="alert alert-success" role="alert">${elemento.resultado}</div>`; | ||
return; | ||
} | ||
|
||
quizContainer.innerHTML = html; | ||
} | ||
|
||
function selecionarOpcao(indicePergunta, indiceOpcao) { | ||
const proximoIndice = quizData[indicePergunta].proximo[indiceOpcao]; | ||
mostrarPerguntaOuResultado(proximoIndice); | ||
} | ||
|
||
document.addEventListener('DOMContentLoaded', () => mostrarPerguntaOuResultado(0)); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters