0
I have a page with some Divs and would like to apply an effect when the mouse goes through some of them. What I would like to happen is that, when passing the mouse through one of the Ivs it increases in size, almost as if it were "approaching" the user’s screen and that, appeared the "Click to know more" button, which is visible at all times, but stay hidden and appear only when the mouse goes through the div.
.bloco-programas{
border: 1px solid #c1c1c1;
padding: 2em 2em;
}
.content-programas{
background-color: #003366;
padding-top: 50px;
padding-bottom: 50px;
color: #dcdcdc;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"></script>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.3/js/bootstrap.min.js"></script>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.3/css/bootstrap.min.css" rel="stylesheet"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<section class="content-programas" id="programas">
<div class="container-fluid">
<h1 class="text-center">Minhas DIVs</h1>
<div class="row">
<div class="col text-center bloco-programas">
<p>Minha div</p>
<p>Qualquer Coisa aqui</p>
<a href="#" class="btn btn-primary">Clique para saber mais</a>
</div>
<div class="col text-center bloco-programas">
<p>Minha div</p>
<p>Qualquer Coisa aqui</p>
<a href="#" class="btn btn-primary">Clique para saber mais</a>
</div>
</div>
<div class="row">
<div class="col text-center bloco-programas">
<p>Minha div</p>
<p>Qualquer Coisa aqui</p>
<a href="#" class="btn btn-primary">Clique para saber mais</a>
</div>
<div class="col text-center bloco-programas">
<p>Minha div</p>
<p>Qualquer Coisa aqui</p>
<a href="#" class="btn btn-primary">Clique para saber mais</a>
</div>
</div>
</div>
</section>
I added the Hide of the button, from there you can play until you reach the result you are looking for.
– Leandro Angelo
Thank you very much, that’s exactly what I wanted
– Phelipe