Advertisement
clickio

Interstitial code desktop + mobile

May 22nd, 2022
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 KB | None | 0 0
  1.  
  2. /* Interstitial code desktop + mobile */
  3. function lx_isMobileDevice(){ if ( /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i .test(navigator.userAgent)){ return true ;} else { return false ;}}
  4. window.googletag = window.googletag || {cmd:[]};
  5. if (lx_isMobileDevice()) {
  6. googletag.cmd.push( function () {
  7. var slot = googletag.defineOutOfPageSlot(
  8. ' / 45470634,21654139727/clickio_area_686233_300x600 ' .trim(),
  9. googletag.enums.OutOfPageFormat.INTERSTITIAL);
  10. // Slot returns null if the page or device does not support interstitials
  11. if (slot) slot.addService(googletag.pubads());
  12. googletag.enableServices();
  13. // Consider delaying until first div on page
  14. googletag.display(slot);
  15. });
  16. }
  17. else
  18. {
  19. googletag.cmd.push( function () {
  20. var slot = googletag.defineOutOfPageSlot(
  21. ' / 45470634,21654139727/clickio_area_686237_300x600 ' .trim(),
  22. googletag.enums.OutOfPageFormat.INTERSTITIAL);
  23. // Slot returns null if the page or device does not support interstitials
  24. if (slot) slot.addService(googletag.pubads());
  25. googletag.enableServices();
  26. // Consider delaying until first div on page
  27. googletag.display(slot);
  28. });
  29. }
  30.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement