Page Widget How to - Adjust Text Font size in animation








Question

We would like to know how to adjust Text Font size in animation.

Answer


<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
div {<!--from  www .  jav a2  s  . c om-->
  font-size: 100%;
  -webkit-transition: all 300ms;
}

div:hover {
  font-size: 200%;
}
</style>
</head>
<body>
  <div>Lorem ipsum</div>
</body>
</html>

The code above is rendered as follows: