/
githubmirror
/
amphtml
Обзор
Документация
Войти
/
githubmirror
/
amphtml
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
examples/amp-ad/sticky.js
14 строк
519 B
Kristofer Baxter
♻️ Remove Notice from JS and Markdown (#35717)
19 авг 2021, 21:21
Не верифицирован
19 авг 2021, 21:21
f564b7e
Код
Авторство
О чём код?
window.onload = function () { var iframe = document.querySelector('#creative'); // Step 1: Once knowing the ad size is 300x250, hide the frame and request to have ad shown iframe.style.top = '250px'; iframe.style.transition = '3s'; window.context.requestResize(300, 250).then(function () { iframe.style.top = '0px'; iframe.addEventListener('transitionend', function () { // Animation ended, now signaling AMP the ad is now interactive window.context.signalInteractive(); }); }); };