SImple css effect for text

Just hover it :)

by poniyur

HTML

<div class="anim-text">
		<span>Lorem ipsum dolor sit amet, consectetur</span>
</div>

CSS

.anim-text {
  width: 50%;
  padding: 5px;
  text-align: center;  
  cursor: pointer;  
}

.anim-text span {
  transition: all 1s;
  
  background-image: linear-gradient(to right, #7A88D1 50%, #DE4848 50%);
  background-position: 0;
  background-size: 200%;  

  font-weight: bold;
  font-size: 3.5em;  
  line-height: 1.1;
}

.anim-text:hover span {
  background-position: -100%;
}