Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
sibellyvih authored Feb 24, 2024
1 parent 8e66e62 commit caf13bc
Showing 1 changed file with 54 additions and 1 deletion.
55 changes: 54 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ <h1>DICAS DE INTERCÂMBIO</h1>
<div class="beneficios">
<h2>Os benefícios em fazer um intercâmbio</h2>
<p>Fazer intercâmbio é uma experiência enriquecedora que envolve viver em um país estrangeiro por um período determinado, geralmente com o objetivo de estudar, trabalhar, aprender um novo idioma ou simplesmente mergulhar em uma cultura diferente. Essa experiência oferece uma série de benefícios pessoais, acadêmicos e profissionais. </p>
<br>

<div class="botoes">
<button class="botao">Aprendizado de Idiomas</button>
Expand All @@ -42,11 +43,34 @@ <h2>Os benefícios em fazer um intercâmbio</h2>
<button class="botao">Experiências Inesquecíveis</button>
<button class="botao">Visão Global</button>
</div>


<br>
<p>No entanto, é importante lembrar que o intercâmbio também pode ser desafiador. Você pode enfrentar dificuldades com o idioma, sentir saudades de casa, lidar com choque cultural e enfrentar obstáculos inesperados. No entanto, esses desafios também fazem parte do processo de crescimento e amadurecimento.</p>
</div>
</main>

<style>
/* Adicione algum estilo conforme necessário */
.depoimentos {
width: 60%;
margin: 0 auto;
text-align: center;
}

.depoimentos blockquote {
display: none;
}

.depoimentos blockquote.active {
display: block;
}

.carousel-controls {
font-size: 24px;
cursor: pointer;
}
</style>

<div class="depoimentos">
<h2>Depoimentos</h2>
<blockquote>
Expand Down Expand Up @@ -92,7 +116,36 @@ <h2>Depoimentos</h2>
</div>
<footer class="name">Sibelly Vitória Antonio</footer>
</blockquote>
<div class="carousel-controls" onclick="changeDepoimento(-1)">&#10094;</div>
<div class="carousel-controls" onclick="changeDepoimento(1)">&#10095;</div>
</div>

<script>
let currentIndex = 0;
const depoimentos = document.querySelectorAll('.depoimentos blockquote');

function showDepoimento(index) {
// Certifique-se de que o índice não ultrapasse os limites
if (index < 0) {
currentIndex = depoimentos.length - 1;
} else if (index >= depoimentos.length) {
currentIndex = 0;
}

// Oculta todos os depoimentos
depoimentos.forEach(dep => dep.classList.remove('active'));

// Exibe apenas o depoimento com o índice atual
depoimentos[currentIndex].classList.add('active');
}

function changeDepoimento(n) {
showDepoimento(currentIndex += n);
}

// Exibe o primeiro depoimento ao carregar a página
showDepoimento(currentIndex);
</script>

<div class="jogo">
<h2>English Travel Game</h2>
Expand Down

0 comments on commit caf13bc

Please sign in to comment.