Hover color effect on images

PHOTO EMBED

Fri Nov 24 2023 09:57:07 GMT+0000 (Coordinated Universal Time)

Saved by @Peshani98

/*Content Show/Hide on Hover*/
selector{
    opacity: 0;
    transition: 0.5s ease-in-out;
}
selector:hover{
    opacity: 1;
}
content_copyCOPY