| Descrição | Formato composto por um vídeo que é carregado entre os parágrafos do conteúdo do site. |
Format composed of a video that loads between the paragraphs of the site's content. | Formato compuesto por un video que se carga entre los párrafos del contenido del sitio. |
|---|
| VÍDEO | ||||
|---|---|---|---|---|
| Tempo | Tamanho | Tipo de arquivo | Peso Máximo | |
| 30 segundos | 16:9 (1280x720 px) | MP4 | 3MB | |
| Especificações extras | ||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Multiplataforma: Desktop, tablet e mobile Script de terceiro: SIM apenas VAST3 Pixel e Clique Contador: Sim Para checar a clicktag Clique aqui |
Multiplatform: Desktop, tablet, and mobile Third-party script: YES, only VAST3 Pixel and Click Counter: Yes To check the clicktag: Click here |
Multiplataforma: Escritorio, tablet y móvil Script de terceros: SÍ, solo VAST3 Píxel y Contador de clics: Sí Para verificar la clicktag: Haz clic aquí |
| Portais presentes | AdoroCinema, IGN, MGG, MinhaVida, Purepeople, TudoGostoso |
|---|
RECOMENDAÇÕES E BOAS PRÁTICAS
RECOMMENDATIONS AND BEST PRACTICES
CLICK TAG
1) Nomear o elemento clicável como "click-area"
1) Name the clickable element as "click-area"
1) Nombrar el elemento clickeable como "click-area"
Ex:
<a href="#" id="click-area">
2) Inserir o script abaixo no final do <body>
2) Insert the script below at the end of the <body>
2) Insertar el script a continuación al final de <body>
<script type="text/javascript">
var url = window.location.href;
var clickTag = url.substring(url.indexOf("click=")+6,url.length);
document.getElementById("click-area").addEventListener('click', ()=> {
window.open(clickTag, "_blank");
});
</script>