Page Widget How to - Hover to add text shadow in animation








Question

We would like to know how to hover to add text shadow in animation.

Answer


<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
h3 {<!--from  w  w  w.  ja  v  a2 s  .c o m-->
  transition: all 1s ease;
  color: #61975F;
}

h3:hover {
  color: #EE2A51;
  text-shadow: 5px 11px 3px #EE2A51;
}
</style>
</head>
<body>
  <h3>Hello</h3>
</body>
</html>

The code above is rendered as follows: