Search
 
SCRIPT & CODE EXAMPLE
 

CSS

equivalent zoom css

-moz-transform: scale(0.5);
-webkit-transform: scale(0.5);
-o-transform: scale(0.5);
-ms-transform: scale(0.5);
transform: scale(0.5);
Comment

zoom animations in css

.zoom-in-out-box {
  margin: 24px;
  width: 50px;
  height: 50px;
  border:1px solid green;
  background: #f50057;
  animation: zoom-in-zoom-out 1s ease infinite;
}

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.5, 1.5);
  }
  100% {
    transform: scale(1, 1);
  }
}
Comment

zoom level in css

.zoom {
  zoom: 150%;
}
Comment

PREVIOUS NEXT
Code Example
Css :: electron draggable 
Css :: animation reverse 
Css :: how to fix the nav bar to the left of the page 
Css :: table td data in middle 
Css :: css round outline 
Css :: css width: 50% 
Css :: how to write css like a pro 
Css :: line spacing css 
Css :: css orange color 
Css :: get into a Docker container bash 
Css :: align text in center css 
Css :: change bot description background top.gg 
Css :: center tecxt css 
Css :: how to set the scroll in bootstrap4 table body 
Css :: how to manage overflowing text in button 
Css :: gradient text color css 
Css :: css linear gradient 
Css :: progress bar color change css 
Css :: reset browser font-size defaults in css 
Css :: one image position relative and other absolute 
Css :: css button border 
Css :: html center image 
Css :: css keep div at bottom of screen when scrolling 
Css :: css break wrap header 
Css :: css pointer event 
Css :: bootstrap 5 sidebar class 
Css :: rem vs em 
Css :: Make the cursor appear as a crosshair on all links of the web page: 
Css :: css how to change font colr 
Css :: html file upload without browse button 
ADD CONTENT
Topic
Content
Source link
Name
9+3 =