|
home / issues / issue #17
| Issue: | Pixelate Transition Does Not Work Properly On First Display |
| Browser: | IE5.5/6 |
| Platform: | Windows |
| Description: | The pixelate transition
will not always work properly on the first display of a menu. Subsequent displays
work fine. |
| Cause: | Unknown. |
| Comments: | A possible work around
is to use this function as an
HM_OnMenuCreated hook on
the menu that utilizes the pixelate transition:
function HM_fc_FixPixelate(menuEl) {
if(!window.HM_IE55) return;
var theFilter=menuEl.filters.item(this.HideTransitionIndex);
theFilter.apply();
theFilter.play();
}
// register as follows:
...
HM_OnMenuCreated:HM_fc_FixPixelate,
...
Unfortunately, for the above technique to work, the pixelate transition must
be applied both to the Show and Hide transitions for the menu.
Suggestions are requested.
Please use this link to send mail if you have any insights and would like to share them:
Internet Explorer Pixelate
|
| Posted: | March 25, 2004 |
|