淡入淡出在 IE8 中不起作用
我正在使用淡入和淡出淡出渐变 png 来读取文本,它是 png-24 代码非常简单,但 IE8 不会淡入淡出,它只是弹出并弹出 $(文档).ready(函数() {
$('#menu').hover(function() {
$('#gradient').fadeIn('slow');
}, function() {
$('#gradient').fadeOut('fast');
});
});
I am using fade in and fade out to fade a gradient png in order to read text, it is a png-24 the code is very simple yet IE8 wont fade, it just pops in and pops out
$(document).ready(function() {
$('#menu').hover(function() {
$('#gradient').fadeIn('slow');
}, function() {
$('#gradient').fadeOut('fast');
});
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它的工作正常......
its work fine........