PDA

View Full Version : IE 11 and opacity


ckgb
01-31-2014, 07:44 AM
I can't find the template edit mod I used, therefore have to post in here.

I use the below code for opacity - fade out effect for my avatars. It works in all the browsers but Internet Explorer.

Would appreciate a solution. Thank you very much.

.avatarcontainer img,
.postuseravatar img {
opacity:0.5;
transition: all 0.5s ease-in;
-moz-transition: all 0.5s ease-in;
-webkit-transition: all 0.5s ease-in;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50 )";
filter: alpha(opacity=50);
-moz-opacity: 0.5;
-khtml-opacity: 0.5;
}
.avatarcontainer:hover img,
.postuseravatar:hover img {
opacity:1;
}

ozzy47
02-01-2014, 02:23 AM
Perhaps this mod, https://vborg.vbsupport.ru/showthread.php?t=286315

You can see it in action here, http://snogssite.com

ckgb
02-01-2014, 04:18 AM
I did not. Thank you very much ozzy47.

I also located a fix. Added

filter:alpha(opacity=100); to css and IE started to work ))