为什么这个旋转木马上的箭头在firefox中淡出而不是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');
}
);
});
您会注意到Chrome中仍然没有显示箭头,而在FF中,整个轮播无法正常工作
as this question我更改文档已准备好加载,但仍然没有运气。
答案 0 :(得分:2)
奇怪。在Fx和Chrome中,尝试在指定的路径上获取svwloader.gif时有404。
GIF加载是在Coda滑块JS中完成的。 Firefox会原谅丢失的文件,但Chrome会阻止脚本执行。