#3366 closed bug
fadeTo() doesn't work in IE
Reported by: | griswoldo | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | 1.3 |
Component: | effects | Version: | 1.2.6 |
Keywords: | Cc: | griswoldo, flesler | |
Blocked by: | Blocking: |
Description
Using the fadeTo() function yields odd results in Internet Explorer, up to and including version 7. If you try and fade any div that contains darker content but has a light background, weird splotches of the background color will bleed through and then stay there. Works great in FireFox!
Change History (4)
comment:1 Changed 15 years ago by
Cc: | griswoldo flesler added |
---|---|
need: | Review → Test Case |
comment:2 Changed 14 years ago by
I am seeing this problem too. Here is how to reproduce:
<!DOCTYPE html PUBLIC "-W3CDTD XHTML 1.0 TransitionalEN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> <head>
<title></title> <script src="../scripts/jquery-1.3.1.min.js" type="text/javascript"></script> <script language="javascript" type="text/javascript">
$(function() {
$('#buttonNew a').click(function() {
$('<div id="overlay" />').appendTo('body').fadeTo('1200',085);
});
});
</script> <style type="text/css"> #overlay
{
background: Black url(../images/zanmi.jpg) no-repeat center; width: 100%; height: 100%; position:absolute; top: 0; left: 0; z-index: 1000; display: none;
}
</style>
</head> <body> <span id="buttonNew"><a href="#">New</a></span> </body> </html>
comment:9 Changed 12 years ago by
Status: | new → pending |
---|
This ticket has been marked as missing a test case. In an effort to reduce the number of outstanding tickets in the bug tracker, it will be closed automatically in 30 days. In order to prevent this from happening, please provide a working test case. If a test case has already been provided and our records are wrong, please respond to the ticket so that it can be fixed. Thank you!
comment:10 Changed 12 years ago by
Status: | pending → closed |
---|
Automatically closed due to 14 days of inactivity.
Could you provide a test case ? a minimalistic html file with the requires html and js to reproduce the problem. Thanks.