22
| <![CDATA[<script type="text/javascript">
jQuery(window).on('load', function() {
new JCaption('img.caption');
});
</script>]]>
|
82
| <![CDATA[<script>
window.onscroll = function () {
var top = window.pageYOffset || document.documentElement.scrollTop
if (top > 0) {
var x = document.getElementById("bartop");
x.style.background = "#313131";
x.style.borderBottom = "2px solid";
x.style.borderColor = "#212121";
x.style.top = "0"; //barra brasil
var y = document.getElementById("iconhome");
y.style.opacity = "1";
} else {
var x = document.getElementById("bartop");
x.style.background = "#313131"; //none para transparente
x.style.borderBottom = "0px";
x.style.borderColor = "#000";
x.style.top = "42px"; //margem da barra brasil margem
var y = document.getElementById("iconhome");
y.style.opacity = "0";
}
}
</script>]]>
|
193
| <![CDATA[<script>// <![CDATA[
$('div.conteudo').css({'width':'100%', 'margin':'0px', 'max-width':'100%', 'padding' : '0px'});
$('div.prodblock').css({'border-color':'#898989',});
$('div.column').css({'width':'100%', 'margin':'0px', 'max-width':'100%', 'padding' : '0px'});
// ]]></script>]]>
|
458
| <![CDATA[<script>// <![CDATA[
// ACCORDION
var acc = document.getElementsByClassName("accordion");
var i;
for (i = 0; i < acc.length; i++) {
acc[i].addEventListener("click", function() {
this.classList.toggle("active");
var panel = this.nextElementSibling;
if (panel.style.maxHeight){
panel.style.maxHeight = null;
} else {
panel.style.maxHeight = panel.scrollHeight + "px";
}
});
}
// ]]></script>]]>
|