Como implementar Venda de Bilhetes no seu Site
Parâmetros Obrigatórios
- PartnerID: providenciado pela Etnaga após celebração do contrato
<script type="text/javascript" >
var options = [];
//ParterID providenciado pela Etnaga
options.push(['PartnerID', 'XPT0']);
(function (options) {
var bol = document.createElement('script');
bol.type = 'text/javascript';
bol.async = true;
var inn = '{';
for (var i = 0; i < options.length; i++) {
inn += options[i][0] + ':\'' + options[i][1] + '\'';
if (i < options.length - 1)
inn += ',';
}
inn += '}'
bol.innerHTML = inn;
bol.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'pub.bilheteiraonline.pt/Pub.js';
var s = document.getElementsByTagName('script');
s[s.length - 1].parentNode.replaceChild(bol, s[s.length - 1]);
})(options);
</script>
Resultado
Parâmetros opcionais
- Width: Largura em píxeis do container
- Height: Largura em píxeis do container
- BackgroundColor: Cor de fundo do container em formato HTML
- CssClass: A classe CSS que pretende que o container da publicidade
tenha para efeitos de posicionamento ou de aspecto
- Lang: a indicação do código de linguagem
ISO 639
<script type="text/javascript" >
var options = [];
//ParterID providenciado pela Etnaga
options.push(['PartnerID', 'XPT0']);
//Parâmetros Opcionais
options.push(['Width', '150']);
options.push(['Height', '300']);
options.push(['BackgroundColor', '#D3D3D3']);
options.push(['CssClass', 'ClasseTeste']);
options.push(['Lang', 'pt-PT']);
(function (options) {
var bol = document.createElement('script');
bol.type = 'text/javascript';
bol.async = true;
var inn = '{';
for (var i = 0; i < options.length; i++) {
inn += options[i][0] + ':\'' + options[i][1] + '\'';
if (i < options.length - 1)
inn += ',';
}
inn += '}'
bol.innerHTML = inn;
bol.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'pub.bilheteiraonline.pt/Pub.js';
var s = document.getElementsByTagName('script');
s[s.length - 1].parentNode.replaceChild(bol, s[s.length - 1]);
})(options);
</script>
<style type="text/css">
.ClasseTeste
{
border:2px dashed Grey;
}
</style>
Resultado