开发者

jQuery fadeIn and fadeOut issue in Chrome, but works in firefox

开发者 https://www.devze.com 2023-04-12 04:34 出处:网络
Any reason why the开发者_运维技巧 arrows on this carousel fade out in firefox but not chrome? Please find the link

Any reason why the开发者_运维技巧 arrows on this carousel fade out in firefox but not chrome? Please find the link

$(document).ready(function()
{    
    $("div.slider-wrap").hover(
      function () {
        $("div.stripNavL").fadeIn('slow');
        $("div.stripNavR").fadeIn('slow');
      }, 
      function () {
        $("div.stripNavL").fadeOut('slow');
        $("div.stripNavR").fadeOut('slow');
      }
    );
});​

You will notice the arrows still don't show up in Chrome, and in FF, the whole carousel doesn't work properly

as this question I change document ready to load, but still no luck.


Strange. In both Fx and Chrome, there's a 404 in trying to fetch svwloader.gif at the path specified.

The GIF loading is done within the Coda slider JS. Firefox forgives the missing file, but Chrome stops the script from executing.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号