IE png 与 jquery 和 css 问题
function fadehomepage() {
//Set opacity to 0
$('#showcase_home > div > a').css({'opacity':'0'});
$('#showcase_home > div').hover(
function () {
var selected_div = $(this).attr("class") + "_hover";
$(this).find('.' + selected_div).stop().fadeTo(500, 1)
},
function () {
var selected_div = $(this).attr("class") + "_hover";
$(this).find('.' + selected_div).stop().fadeTo(300, 0)
}
);
}
CSS 示例中
div#showcase_home div.shop{
background:url(img/shop.png) no-repeat top;
margin-right:0;
}
.shop_hover{
background: url(img/shop_hover.png) no-repeat top;
width: 290px;
height:230px;
display:block;
padding:0;
margin:0;
}
两个 png 都有透明度。我不关心IE6。
1) 在 IE7/IE8 中,鼠标悬停时,shop_hover.png 出现时,它没有透明度,而是显示黑色:S
2) 为什么在 IE 中,如果我将透明 png 的不透明度设置为低于 1,它会失去透明度?
3)我需要多长时间才能在不损失该死的天数的情况下编写代码来仅修复 IE 问题?磷
function fadehomepage() {
//Set opacity to 0
$('#showcase_home > div > a').css({'opacity':'0'});
$('#showcase_home > div').hover(
function () {
var selected_div = $(this).attr("class") + "_hover";
$(this).find('.' + selected_div).stop().fadeTo(500, 1)
},
function () {
var selected_div = $(this).attr("class") + "_hover";
$(this).find('.' + selected_div).stop().fadeTo(300, 0)
}
);
}
the CSS example
div#showcase_home div.shop{
background:url(img/shop.png) no-repeat top;
margin-right:0;
}
.shop_hover{
background: url(img/shop_hover.png) no-repeat top;
width: 290px;
height:230px;
display:block;
padding:0;
margin:0;
}
both pngs have transparency. I don't care about IE6.
1) in IE7/IE8 on mouseover when shop_hover.png appears it doesn't have transparency, instead it shows black :S
2) why in IE if I set opacity below 1 for transparent pngs it loses transparency?
3) how long before I can code without losing friggin DAYS to fix IE problems only? P
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Png + 不透明度 + IE = 问题。它们是一个糟糕的食谱。因为我每天都会处理这个问题,所以这就是我所做的。
有几个选项可以解决 png 问题。
使用和修改 IE 的 Alpha 图像加载器。 http://msdn.microsoft.com/en-us /library/ms532969(VS.85).aspx
使用名为 dd_roundies 生成图像的 vml 版本,不会出现这些 png 问题。
当页面加载时,调用如下内容:
这应该修复它们,然后悬停时图像应保持固定。
Png + opacity + IE = problems. They are a bad recipe. Since I deal with this daily here is what I do.
There are a couple options to fix the png problems.
Use and tinker with IE's alpha image loader. http://msdn.microsoft.com/en-us/library/ms532969(VS.85).aspx
Use a library called dd_roundies which generates a vml version of your image which won't have these png problems.
When the page loads, calls something like this:
This should fix them and then on hover the images should remain fixed.