Hi.
I'm using video ads successfully til now.
But I have some issue with
adsManager.resize.
What I did is:
<div id='admaru_videos' style='width:550px; display=none;'></div>
<video id='video' style='width=550px; height=412px; display=none; opacity=0' autoplay playsinline muted></video>
videoContent = document.getElementById('video');
adDisplayContainer =
new google.ima.AdDisplayContainer(
document.getElementById('videos'), videoContent);
requestAds ...
onAdsManagerLoaded ...
and at some point, I try to resize it.
adsManager.resize(300,250,google.ima.ViewMode.NORMAL);
and
adsManager.resize(550,412,google.ima.ViewMode.NORMALL);
550x412 -> 300x250 might be fine.
but 300x250 to 550x412 case have some problem.
The video is just stopped for some reasons.
Is there some solution about this problem?
and does resize process take few seconds ? bcs resize process take some time when I implement it.