0
<h4><a data-userid="e5bad3" href="http://www.c-sharpcorner.com/members/bhuvanesh-mohankumar" style="outline: none 0px; text-decoration: none; cursor: pointer; font-weight: normal; font-family: Roboto, sans-serif; color: #01a821 !important;">Bhuvanesh Mohankumar</a>: Thanks for the suggestion..but still no luck.</h4><div></div>
0
Hi Blumonde,
Just take a look at this site, Hope can give some clue for your issue,
http://www.kevinleary.net/jquery-fadein-fadeout-problems-in-internet-explorer/
0
I hear that jquery can hack IE transitions issues on background images.
Any suggestion/advise anyone? Thank you for reviewing this case.
0
<h4><a data-userid="e5bad3" href="http://www.c-sharpcorner.com/members/bhuvanesh-mohankumar" style="outline: none 0px; text-decoration: none; cursor: pointer; font-weight: normal; font-family: Roboto, sans-serif; color: #01a821 !important;">Bhuvanesh Mohankumar</a>: I tested it and it didn't work in my case. No effects at all. Thanks anyway.</h4>
0
Actually IE don't support all kinds of effects like chrome, you need to define hack explicitly.
Here is a sample Hack for on mouse over image transition, may help you ,
HTML:
<div id="cf"> <img class="bottom" src="/images/Windows%20Logo.jpg" />
<img class="top" src="/images/Turtle.jpg" />
</div>
CSS:
#cf { position:relative; height:281px; width:450px; margin:0 auto; }
#cf img { position:absolute; left:0; -webkit-transition: opacity 1s ease-in-out;
-moz-transition: opacity 1s ease-in-out; -o-transition: opacity 1s ease-in-out;
transition: opacity 1s ease-in-out; }
#cf img.top:hover { opacity:0; }
Mark as answer, if helpful.