Change text opacity on hover and during transition in css
<div id="image-3">
<img src="sample.jpg" height="110" width="110">
<div>
<p>Sample</p>
</div>
<div id="hello-text-right">
<span>Hello</span>
</div>
</div>
#hello-text-right{
color:rgba(0,0,0,0);
}
#hello-text-right:hover{
color:rgba(0,0,0,1);
}