The HTML element to be revealed.
The duration over which the element's opacity should be increased, in milliseconds. Defaults to 400ms.
If the provided element is null or undefined.
// Get an element by its GUID
const targetElement = ix.api.dom.getHtml("<ELEMENT-GUID>");
// Reveal the target element over a period of 400ms
ix.api.dom.show(targetElement);
// Reveal the target element over a period of 1000ms
ix.api.dom.show(targetElement, 1000);
Gradually reveals the specified HTML element by increasing its opacity over a given duration, then clearing its display style.