The closest I've gotten is delaying the transition using:
setTimeout(nextPage, 3000);
function nextPage() {
document.getElementById('pagedeck').goToNextPage();
}
But after I traffic that in DCS it doesn't work the same. The creative all works as it should, but the banner's window doesn't expand to the new size, so most of the creative isn't visible.
Even if that were to work, it doesn't solve my problems exactly as I need since once the user has hovered over the ad at all the transition is inevitable instead of requiring the full three seconds of hover.
Thanks in advance for any help!
Thanks for your reply! Your solution fixed the issue of the banner not expanding to the whole height after mouseover.
So we still need a way to have the action dependent on three full seconds of hover, but at least now we can see all the content!
Thanks,
Austin
Hovering over it for any less than 3 seconds shouldn't expand the banner.
So it's not requiring that the user keeps their mouse over the banner for the full 3 seconds before opening, it's just delaying the open for the 3 seconds.