Jump to content

Como tornar uma div em link e fazer aparecer um botão e simultaneamente alterar o gradiente da imagem em background


Joaquim Velez
Go to solution Solved by JakeBass,

Recommended Posts

Olá pessoal boa tarde,

 

Sou novo nesta área e estou com dificuldade em criar o seguinte efeito no css:

Tenho uma div/aside com uma imagem em background e por cima da imagem um background-color com um alpha de .95.

O que eu pretendo é o seguinte:

- pretendo tornar essa div/aside link  e em hover tornar o background-color com o apha mais próximo da unidade ou seja próximo da opacidade;

- e em simultaneo fazer aparecer um botão oculto.

Será que me podem ajudar?

Link to comment
Share on other sites

  • Solution

tipo isto? 

http://codepen.io/tomasantunes/pen/MpXEQR

 

<div class="my-div">
   <div class="overlay">
     <button>Button</button> 
   </div>
</div>
.my-div {
  background-image: url('http://lorempixel.com/400/300/nature');
  width: 400px;
  height: 300px;
}

.overlay {
  display: none;
  background-color: rgba(255, 255, 255, 0.75);
  width: 100%;
  height: 100%;
}
$('.my-div').hover(
function() {
  $('.overlay').show();
},
function() {
  $('.overlay').hide();
});

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site you accept our Terms of Use and Privacy Policy. We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.