/
githubmirror
/
amphtml
Обзор
Документация
Войти
/
githubmirror
/
amphtml
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
examples/ac-creative.js
79 строк
2 KB
Jake Fried
lint: support typescript (#37324)
12 янв 2022, 03:15
Не верифицирован
12 янв 2022, 03:15
b2e9a06
Код
Авторство
О чём код?
/* eslint-disable @typescript-eslint/no-unused-vars */ if (!window.context) { // window.context doesn't exist yet, must perform steps to create it // before using it console.log('window.context NOT READY'); // load ampcontext-lib.js which will create window.context ampContextScript = document.createElement('script'); ampContextScript.src = 'https://localhost:8000/dist.3p/current/ampcontext-lib.js'; document.head.appendChild(ampContextScript); } function intersectionCallback(changes) { // Code below is simply an example. var latestChange = changes[changes.length - 1]; var { // Amp-ad width and height. height: h, width: w, // Position in the viewport. x: vx, y: vy, } = latestChange.boundingClientRect; var { // Visible width and height. height: vh, width: vw, } = latestChange.intersectionRect; // Viewable percentage. var viewablePerc = ((vw * vh) / (w * h)) * 100; console.log(viewablePerc, w, h, vw, vh, vx, vy); } function dummyCallback(changes) { console.log(changes); } var shouldStopVis = false; var stopVisFunc; var shouldStopInt = false; var stopIntFunc; function toggleObserveIntersection() { if (shouldStopInt) { stopIntFunc(); } else { stopIntFunc = window.context.observeIntersection(intersectionCallback); } shouldStopInt = !shouldStopInt; } function toggleObserveVisibility() { if (shouldStopVis) { stopVisFunc(); } else { stopVisFunc = window.context.observePageVisibility(dummyCallback); } shouldStopVis = !shouldStopVis; } function resizeAd() { window.context .requestResize(500, 600) .then(function () { console.log('Success!'); this.innerWidth = 500; this.innerHeight = 600; }) .catch(function () { console.log('DENIED'); }); }