Bug Tracker

Modify

Ticket #3366 (closed bug)

Opened 5 years ago

Last modified 14 months ago

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
Blocking: Blocked by:

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

comment:1 Changed 5 years ago by flesler

  • Cc griswoldo, flesler added
  • need changed from Review to Test Case

Could you provide a test case ? a minimalistic html file with the requires html and js to reproduce the problem. Thanks.

comment:2 Changed 4 years ago by dwaz

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 3 years ago by snover

  • Status changed from new to 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 3 years ago by trac-o-bot

  • Status changed from pending to closed

Automatically closed due to 14 days of inactivity.

Please follow the  bug reporting guidlines and use  jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.

View

Add a comment

Modify Ticket

Action
as closed
Author


E-mail address and user name can be saved in the Preferences.

 
Note: See TracTickets for help on using tickets.