Answers for "text zoom in zoom out animation css"

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
8

zoom image css

/*Zoom on hover*/

<style>
.zoom {
  padding: 50px;
  background-color: green;
  transition: transform .2s; /* Animation */
  width: 200px;
  height: 200px;
  margin: 0 auto;
}

.zoom:hover {
  transform: scale(1.5); /* (150% zoom)*/
}
</style>

<div class="zoom"></div>

/*credits: w3schools.com */
Posted by: Guest on April-16-2020
0

on hover zoom card

transform: scale(1.5);
Posted by: Guest on July-16-2020
-1

html zoom text on hover

<style>
#test-text:hover {
font-size: 40px;
}


</style>

<body>
<p id=test-text>TEST</p>
</body>
Posted by: Guest on January-08-2021

Browse Popular Code Answers by Language