Answers for "css filter zoom"

CSS
4

css zoom

.zoom50 {
  -moz-transform: scale(0.5);
  -webkit-transform: scale(0.5);
  -o-transform: scale(0.5);
  -ms-transform: scale(0.5);
  transform: scale(0.5);
}
Posted by: Guest on July-07-2021
1

zoom level in css

.zoom {
  zoom: 150%;
}
Posted by: Guest on September-11-2020
0

how to use image zoom effect in css

.parent:hover .child,
.parent:focus .child {
  transform: scale(1.2);
}
Posted by: Guest on February-26-2021
0

how to enlarge image wen hover

Enter the following block of code into the Custom CSS field in your job
 
.thumbnail:hover {
    position:relative;
    top:-25px;
    left:-35px;
    width:500px;
    height:auto;
    display:block;
    z-index:999;
}
 
in the HTML Add the attribute, class="thumbnail" to each image element 
that you would like to enlarge on hover so that the element looks something like this
 
<img src="[your hosted image URL]" class="thumbnail" height="100" width="100" />
Posted by: Guest on September-06-2020

Browse Popular Code Answers by Language