私のウェブサイトにはいくつかの動画広告があります。ビデオ広告が表示された後 (ima.adevent.type.complete が発生)、ゲームは以下のコードでキーボード フォーカスを正常に取得します。ただし、ビデオ広告がスキップ ボタンのクリックでスキップされた場合、ゲームに適切にフォーカスが与えられません。つまり、以下のコードで google.ima.AdEvent.Type.SKIPPED が発生する場合です。
case google.ima.AdEvent.Type.SKIPPED:
case google.ima.AdEvent.Type.COMPLETE:
// This event indicates the ad has finished - the video player
// can perform appropriate UI actions, such as removing the timer for
// remaining time detection.
if (ad.isLinear()) {
clearInterval(intervalTimer);
}
focusWhenReady = function () {
doc = iframe.contentDocument || iframe.contentWindow.document;
if (doc.readyState == "complete") {
iframe.contentWindow.focus();
console.log('code comes here in both cases ...');
} else {
setTimeout(focusWhenReady, 200)
}
}
setTimeout(focusWhenReady, 100);