My current issue involves a UX switch that controls the effect on and off of pictures.
http://plnkr.co/edit/JcPXpP0jE5GysBbZbrkp
I am trying to achieve a smooth fade transition from one picture to another over 1 second, but I am encountering difficulties making it work using CSS. Any assistance on this matter would be greatly appreciated. Thank you.
.off
{
opacity: 1;
-moz-transition: opacity 1s ease-in;
-o-transition: opacity 1s ease-in;
-webkit-transition: opacity 1s ease-in;
transition: opacity 1s ease-in;
position:relative;
z-index:2;
}