Creatives
Creative billing


Preview

The ad format is a standard banner with a specified value of height and width.

Supported platforms

Desktop Tablet Phone
Windows Mac iOS Android iOS Android
Chrome, Firefox, Edge, IE10+ Safari6+, Chrome, Firefox ver. 7.0+ ver. 4.4+ ver. 7.0+ ver. 4.4+

Known issues

Creative created with Adobe Edge technology can be non-clickable in a Safari Mobile browser.

Format requirements

Main panel

Standard dimensions, WxH, px: 300х250, 320×50, 480×75, 640×100, 800×125

Video

  • Video player container can be of any size within the expanded panel’s borders
  • File type: .mp4
  • Duration: 30 sec
  • Frame rate: 24 fps

Audio

User-initiated (off by default)

File size

max 300 KB

Download archive with the template:

Download

How to work with .zip archive (template)

  1. Unpack an archive with a creative template.
  2. For creative preview use the preview page or copy all files to a folder index – banners – banner – body and open a file index.html in a browser using localhost. For that, a web server has to be installed (e.g. IIS for Windows, Apache for Mac OS).
  3. Additionally, you can check the preview of the creative by copying the link to it and viewing it from your mobile device.

  4. Open the file body.html with the text editor and edit the code snippet inside tags <body> </body>.
  1. Edit a file body.js.
  2. Save and archive all banner assets in .zip (you should archive the files, not the folder that contains the files).

Asset requirements

ZIP archive

A banner with all banner assets should be archived as a .zip file. Use a .zip file with a template.

HTML file

The HTML file must define all used sources (libraries, images, etc). A recommended file name is body.html.

API connection and usage

globalHTML5Api connects automatically, requested the following way:

Expand the globalHTML5Api code
globalHTML5Api.on('load', function(){
  /*
    YOUR CODE IS HERE
  */
});

globalHTML5Api objects and methods should be defined inside a called function. All used modules should be listed as function parameters. The format may use the Player module. A sample of globalHTML5Api.init usage for the Mobile Standard format looks the following way:

Expand the globalHTML5Api.init example code
globalHTML5Api.on('load', function(){
  globalHTML5Api.init({
   'resize': [
   {
     'name': 'state-1',
     'width': '300px',
     'height': '250px'
   }
   ]
  });
});

globalHTML5Api.init Parameters

Key Properties Type Description
resize Array Array of objects
name (required) String Object name. Each object presents a particular container state (resizeState).
width (required) String|Number Banner container width
height (required) String|Number Banner container height

globalHTML5Api Methods

Method Arguments Type Description
click(URL) Method to call the clickthrough. Target URL may be set as a parameter or from the user interface. The URL set in the code has a higher priority than the URL set from the UI, which can lead to a conflict. Therefore, it is mandatory to use only one of the available methods.
URL (optional) String Target URL

Video

In case the creative contains video, see the  Video player module  page.

Images

Supported file types: .jpg, .png, .gif, .svg

Events tracking

  • View
  • Confirmed view
  • Click
For any questions regarding ad manuals please contact the support manager of your account.
Updated on April 09, 2024