解决IE下背景图片的抖动问题
作者:PaulLeder 日期:2007-01-19
解决IE下图片作为背景时,有鼠标操作时的抖动问题
参考地址:
http://evil.che.lu/2006/9/25/no-more-ie6-background-flicker
CSS如下:
程序代码
也可用JS实现:
程序代码
参考地址:
http://evil.che.lu/2006/9/25/no-more-ie6-background-flicker
CSS如下:
程序代码
复制内容到剪贴板
程序代码
程序代码html {
filter: expression(document.execCommand("BackgroundImageCache", false, true));
}
filter: expression(document.execCommand("BackgroundImageCache", false, true));
}
也可用JS实现:
程序代码
复制内容到剪贴板
程序代码
程序代码try {
document.execCommand('BackgroundImageCache', false, true);
} catch(e) {}
document.execCommand('BackgroundImageCache', false, true);
} catch(e) {}
评论: 0 | 引用: 88 | 查看次数: 2571
发表评论
上一篇
下一篇

文章来自:
Tags:
相关日志:






