Answers for "how to make image fade in css"

11

css fade in

/* Just add .fade-in class to element */

.fade-in {
	animation: fadeIn 2s;
  	opacity: 1;
}

@keyframes fadeIn {
  from {
  	opacity: 0;
  }
  to {
 	opacity: 1;
  }
}
Posted by: Guest on October-25-2020
1

css background image fade

<script>
  function change_opacity(opacity){
  document.getElementById('bg-img').style.opacity=opacity
}
</script>
<style>
  #wrapper{
  width:500px;
  height:350px;
  margin:auto;
   background-opacity:.5;
  position:relative;
}

#bg-img{
  position:absolute;
    background-image:url(https://www.citynews1130.com/wp-content/blogs.dir/sites/9/2017/06/05/cat.jpg);
  background-size: cover;
  top:0;
  left:0;
  right:0;
  bottom:0; 
  transition-duration:.5s
}

button{
  position:absolute;
  z-index:2;
  top:50%;  
}

#b1{
  left:10%;
}

#b2 {
  right:10%;
}
</style>


<div id='wrapper'>
  <button onclick='change_opacity(1)' id='b1'>Click here to fade in</button>
  <div id='bg-img'></div>
  <button onclick='change_opacity(0)' id='b2'>Click here to fade in</button>

</div>
Posted by: Guest on June-26-2021
5

css fade out

/* Answer to: "css fade out" */

/*
  With the code below, all you have to do is use JavaScript to
  give the element ".hide-opacity" and it'll fade-out.

  Feel free to edit this code so it works on hover, focus, active
  or any other special selector possible with CSS and of course
  feel free to use this code with your JavaScript too!
*/

.successfully-saved {
    color: #FFFFFF;
    text-align: center;

    -webkit-transition: opacity 3s ease-in-out;
    -moz-transition: opacity 3s ease-in-out;
    -ms-transition: opacity 3s ease-in-out;
    -o-transition: opacity 3s ease-in-out;
     opacity: 1;
}

.successfully-saved.hide-opacity {
    opacity: 0;
}
Posted by: Guest on April-27-2020

Code answers related to "how to make image fade in css"

Browse Popular Code Answers by Language