#10078 closed defect (duplicate)
dojox.fx.wipeTo Cannot Wipe to 0 width
Reported by: | ole | Owned by: | anonymous |
---|---|---|---|
Priority: | high | Milestone: | tbd |
Component: | fx | Version: | 1.3.2 |
Keywords: | Cc: | [email protected]… | |
Blocked By: | Blocking: |
Description
This does not work:
var currentNodeWipeOutParameters =
{ node: "currentNode", height: 100, width: 0, duration: 300
};
var currentNodeWipeOutAnimation =
dojox.fx.wipeTo(
currentNodeWipeOutParameters);
But this does:
var currentNodeWipeOutParameters =
{ node: "currentNode", height: 100, width: 1, duration: 300
};
var currentNodeWipeOutAnimation =
dojox.fx.wipeTo(
currentNodeWipeOutParameters);
Applied to this node:
<div id="currentNode"
style=" background-color: black;
top: 200px; left: 100px; width: 100px; height: 100px; position: absolute;">
</div>
Change History (2)
comment:1 Changed 11 years ago by
Resolution: | → duplicate |
---|---|
Status: | new → closed |
comment:2 Changed 11 years ago by
Component: | General → fx |
---|
Note: See
TracTickets for help on using
tickets.
exact dup of #10077