+ All Categories
Home > Documents > Interactive Advertising Bureau · No HTML5 specific size limits yet BUT we all know size limits...

Interactive Advertising Bureau · No HTML5 specific size limits yet BUT we all know size limits...

Date post: 03-Jul-2020
Category:
Upload: others
View: 1 times
Download: 0 times
Share this document with a friend
34
Transcript
Page 1: Interactive Advertising Bureau · No HTML5 specific size limits yet BUT we all know size limits need to be increased All Files.html .js .css .jpg .png … please read Section 2.2
Page 2: Interactive Advertising Bureau · No HTML5 specific size limits yet BUT we all know size limits need to be increased All Files.html .js .css .jpg .png … please read Section 2.2

Page 3: Interactive Advertising Bureau · No HTML5 specific size limits yet BUT we all know size limits need to be increased All Files.html .js .css .jpg .png … please read Section 2.2
Page 4: Interactive Advertising Bureau · No HTML5 specific size limits yet BUT we all know size limits need to be increased All Files.html .js .css .jpg .png … please read Section 2.2
Page 5: Interactive Advertising Bureau · No HTML5 specific size limits yet BUT we all know size limits need to be increased All Files.html .js .css .jpg .png … please read Section 2.2
Page 7: Interactive Advertising Bureau · No HTML5 specific size limits yet BUT we all know size limits need to be increased All Files.html .js .css .jpg .png … please read Section 2.2
Page 8: Interactive Advertising Bureau · No HTML5 specific size limits yet BUT we all know size limits need to be increased All Files.html .js .css .jpg .png … please read Section 2.2
Page 9: Interactive Advertising Bureau · No HTML5 specific size limits yet BUT we all know size limits need to be increased All Files.html .js .css .jpg .png … please read Section 2.2
Page 10: Interactive Advertising Bureau · No HTML5 specific size limits yet BUT we all know size limits need to be increased All Files.html .js .css .jpg .png … please read Section 2.2

No HTML5 specific size limits yet BUT

we all know size limits need to be increased

All Files

.html .js .css

.jpg .png …

please read Section 2.2

.zip Section 2.5.1

Page 11: Interactive Advertising Bureau · No HTML5 specific size limits yet BUT we all know size limits need to be increased All Files.html .js .css .jpg .png … please read Section 2.2

please read Section 2.3

1 file = 1 connection

Page 12: Interactive Advertising Bureau · No HTML5 specific size limits yet BUT we all know size limits need to be increased All Files.html .js .css .jpg .png … please read Section 2.2

please read Section 2.4

var clickTag = …

<meta name=“ad.size” …

Page 13: Interactive Advertising Bureau · No HTML5 specific size limits yet BUT we all know size limits need to be increased All Files.html .js .css .jpg .png … please read Section 2.2

please read Section 2.5

how about graceful degradation?

Page 14: Interactive Advertising Bureau · No HTML5 specific size limits yet BUT we all know size limits need to be increased All Files.html .js .css .jpg .png … please read Section 2.2
Page 15: Interactive Advertising Bureau · No HTML5 specific size limits yet BUT we all know size limits need to be increased All Files.html .js .css .jpg .png … please read Section 2.2
Page 16: Interactive Advertising Bureau · No HTML5 specific size limits yet BUT we all know size limits need to be increased All Files.html .js .css .jpg .png … please read Section 2.2

<video controls

src=‘yourVideoFile.mp4’

poster=‘yourPosterImg.jpg’

height='640’

width='360’

></video>

Page 17: Interactive Advertising Bureau · No HTML5 specific size limits yet BUT we all know size limits need to be increased All Files.html .js .css .jpg .png … please read Section 2.2

<video controls height='640' width='360'>

<source src='yourVideo.mp4' type='video/mp4' />

<source src='yourVideo.webm' type='video/webm' />

<! -- Flash Code Here -->

<embed src='yourVideo.flv' width='640' height='360’

quality='high’ type='application/x-shockwave-

flash'></embed>

</video>

Page 18: Interactive Advertising Bureau · No HTML5 specific size limits yet BUT we all know size limits need to be increased All Files.html .js .css .jpg .png … please read Section 2.2

var theVideo = document.querySelector('#theVideo');

theVideo.addEventListener("play", videoStartHandler, false);

function videoStartHandler (event) {

console.log(”Log Video Start Event”);

};

Page 19: Interactive Advertising Bureau · No HTML5 specific size limits yet BUT we all know size limits need to be increased All Files.html .js .css .jpg .png … please read Section 2.2

<video autoplay

muted

src=‘yourVideoFile.mp4’

height='640’

width='360’

></video>

Page 20: Interactive Advertising Bureau · No HTML5 specific size limits yet BUT we all know size limits need to be increased All Files.html .js .css .jpg .png … please read Section 2.2

Page 21: Interactive Advertising Bureau · No HTML5 specific size limits yet BUT we all know size limits need to be increased All Files.html .js .css .jpg .png … please read Section 2.2
Page 22: Interactive Advertising Bureau · No HTML5 specific size limits yet BUT we all know size limits need to be increased All Files.html .js .css .jpg .png … please read Section 2.2

Page 23: Interactive Advertising Bureau · No HTML5 specific size limits yet BUT we all know size limits need to be increased All Files.html .js .css .jpg .png … please read Section 2.2
Page 24: Interactive Advertising Bureau · No HTML5 specific size limits yet BUT we all know size limits need to be increased All Files.html .js .css .jpg .png … please read Section 2.2
Page 25: Interactive Advertising Bureau · No HTML5 specific size limits yet BUT we all know size limits need to be increased All Files.html .js .css .jpg .png … please read Section 2.2

Page 26: Interactive Advertising Bureau · No HTML5 specific size limits yet BUT we all know size limits need to be increased All Files.html .js .css .jpg .png … please read Section 2.2

Page 27: Interactive Advertising Bureau · No HTML5 specific size limits yet BUT we all know size limits need to be increased All Files.html .js .css .jpg .png … please read Section 2.2
Page 28: Interactive Advertising Bureau · No HTML5 specific size limits yet BUT we all know size limits need to be increased All Files.html .js .css .jpg .png … please read Section 2.2
Page 29: Interactive Advertising Bureau · No HTML5 specific size limits yet BUT we all know size limits need to be increased All Files.html .js .css .jpg .png … please read Section 2.2

Page 30: Interactive Advertising Bureau · No HTML5 specific size limits yet BUT we all know size limits need to be increased All Files.html .js .css .jpg .png … please read Section 2.2

Page 31: Interactive Advertising Bureau · No HTML5 specific size limits yet BUT we all know size limits need to be increased All Files.html .js .css .jpg .png … please read Section 2.2

Page 33: Interactive Advertising Bureau · No HTML5 specific size limits yet BUT we all know size limits need to be increased All Files.html .js .css .jpg .png … please read Section 2.2

Recommended