jQuery fadeIn fadeOut - IE8不会褪色

时间:2010-05-04 15:38:07

标签: jquery fadein fadeout

任何人都可以告诉我为什么.jpg在IE8中不会淡入淡出或淡出。现在它只是消失并重新出现,没有不透明度的变化。我在本地设置并在发布服务器上设置,奇怪的是图像在本地淡入淡出,只有当我去发布服务器时才会停止淡出。

只是想知道我是否遗漏了某些人可以迅速帮助我的事情。

这是发布服务器上的gcRotateContent,如果我只是抛出一个图像并执行淡入淡出它的工作原理,由于某种原因它不适用于此标记。

<div class="gcRotateContent">
   <div id="USCFRR2EN" class="gcEmployeeProfile">
      <div class="gcEmployeeProfileHeading">
         Meet John</div>
      <div class="gcEmployeeProfileContent">
         <div class="gcEmployeeProfileHRPad">
         </div>
         <div class="gcEmployeeProfileHR">
         </div>
         <div class="gcEmployeeProfileHRPad">
         </div>
         <div class="gcEmployeeProfileSLVideo">
            <img src="/PublishingImages/Profile_JOHN-190x96.jpg" alt="Portrait of employee John."
               height="96" width="190"></div>
         <div class="gcEmployeeProfileName">
         </div>
         <div class="gcEmployeeProfileTitle">
            Software Development Lead, Server Performance</div>
         <div class="gcEmployeeProfileQuote">
            “You will find no other company with the sheer breadth of technologies. The things you get to see and learn from other
            people are amazing.”</div>
      </div>
      <div class="gcEmployeeProfileFooter">
      </div>
   </div>
</div>

<div class="gcRotate">
      <div class="gcRotateContent">
         <div style="border: solid 2px black; text-align: center; width: 150px;">
            This is first content
            <img src="http://pix.motivatedphotos.com/2008/6/16/633492359109161542-Skills.jpg"
               alt="First" />
         </div>
      </div>
      <div class="gcRotateContent">
         <div style="border: solid 2px black; text-align: center; width: 150px">
            This is second content
            <img src="http://www.funnycorner.net/funny-pictures/5010/cheezburger-locats.jpg"
               alt="Second" />
         </div>
      </div>
      <div class="gcRotateContent">
         <div style="border: solid 2px black; text-align: center; width: 150px">
            This is third content
            <img src="http://icanhascheezburger.files.wordpress.com/2007/06/business.jpg" alt="Third" />
         </div>
      </div>
   </div>



   <div>
      This shouldn't move.
   </div>

   <script type="text/javascript">
      function fadeContent() {

         $(".gcRotateContent").first().customFadeOut(500, function() {
            $(".gcRotateContent:hidden:first").customFadeIn(500)
         });
         $(".gcRotateContent").first().appendTo($(".gcRotateContent").parent());
      }

      $(".gcRotate").height(0);

      $(".gcRotateContent").each(
         function() {
            if ($(".gcRotate").height() < $(this).height()) {
               $(".gcRotate").height($(this).height());
            }
         }
         );

      $(".gcRotateContent").each(function() {
         $(this).css("display", "none")
      });

      $(".gcRotate").hover(function() { window.clearInterval(timer) }, function() { timer = window.setInterval("fadeContent()", 2000) });

      $(".gcRotateContent").first().show(0);
      var timer = window.setInterval("fadeContent()", 2000);

      (function($) {
         $.fn.customFadeIn = function(speed, callback) {
            $(this).fadeIn(speed, function() {
               if (jQuery.browser.msie)
                  $(this).get(0).style.removeAttribute('filter');
               if (callback != undefined)
                  callback();
            });
         };
         $.fn.customFadeOut = function(speed, callback) {
            $(this).fadeOut(speed, function() {
               if (jQuery.browser.msie)
                  $(this).get(0).style.removeAttribute('filter');
               if (callback != undefined)
                  callback();
            });
         };
      })(jQuery);
   </script>

5 个答案:

答案 0 :(得分:59)

显然有一种解决方法!

只需将绝对/相对定位元素设置为以下css属性:

opacity:inherit;
filter:inherit;

E.g:

<div>
<img id='myImg' src='http://mydomain.com' style='position:absolute;top:10px;left:5px;filter:inherit;opacity:inherit' />
</div>

玩得开心,

欧麦

答案 1 :(得分:6)

我想通了,css设置位置:相对于图像,显然ie8不喜欢那样,是否有一种解决方法我想知道,搜索开始了。

答案 2 :(得分:1)

我刚遇到这个问题,并且所有css滴答都没有奏效。 fadeIn / Out适用于FF和Chrome,但在IE8中没有,该元素根本没有出现。 在IE7中,它们只是从隐形变为可见。

因此,为了解决我的问题,我只想在其他浏览器上保留fadeIn / Out,并使元素出现在IE8中。解决方案是像这样使用回调:

$(".elements").fadeIn("slow",function(){$(this).show()}):
$(".elements").fadeOut("slow",function(){$(this).hide()}):

这样我总是强迫我想要的结果。

答案 3 :(得分:1)

对于快速而肮脏的修复(或者如果上面的建议不起作用,就像我的情况一样),你可以简单地用show / hide替换jQuery的fadeIn / fadeOut。所以在html中执行:

<!--[if IE]>
<script type="text/javascript src="ieFixes.js"></script>
<![endif]-->

并在IE hacks的一些javascript文件中(例如ieFixes.js)放置:

jQuery.fn.fadeIn = function() {
    this.show();
}

jQuery.fn.fadeOut = function() {
    this.hide();
}

如果你要链接动画电话等,你将不得不调整一下。

答案 4 :(得分:0)

用div(相同大小)替换你的图像,背景图像和淡入/淡出div。

<div style="background-image:url('paper.gif');height:xxxpx;width:xxxpx"></div>