36
| <![CDATA[<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-136072104-1');
</script>]]>
|
63
| <![CDATA[<script>
(function(h,o,t,j,a,r){
h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)};
h._hjSettings={hjid:1941341,hjsv:6};
a=o.getElementsByTagName('head')[0];
r=o.createElement('script');r.async=1;
r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv;
a.appendChild(r);
})(window,document,'https://static.hotjar.com/c/hotjar-','.js?sv=');
</script>]]>
|
762
| <![CDATA[<script type="text/javascript">
function navigateTo(sel, target, newWindow) {
var url = sel.options[sel.selectedIndex].value;
if (newWindow) {
window.open(url, target);
} else {
window[target].location.href = url;
}
}
</script>]]>
|
825
| <![CDATA[<script type="text/javascript">
// external.js
var doc, bod, htm;
addEventListener('load', function(){
doc = document; bod = doc.body; htm = doc.documentElement;
addEventListener('scroll', function(){
doc.querySelector('.menu-topo').style.top = htm.scrollTop > 400 ? '0px' : '-100px';
});
});
</script>]]>
|
836
| <![CDATA[<script type="text/javascript">
$(window).load(function(){
$(window).scroll(function() {
var wintop = $(window).scrollTop(), docheight = $('article').height(), winheight = $(window).height();
console.log(wintop);
var totalScroll = (wintop/(docheight-winheight))*100;
console.log("total scroll" + totalScroll);
$(".KW_progressBar").css("width",totalScroll+"%");
});
});
// Change article into body in Script
</script>]]>
|
850
| <![CDATA[<script type="text/javascript">
$('.corpo-do-texto span').addClass('highlight');
$(".highlight").css({ 'background-color' : '', 'opacity' : '' });
$(window).scroll(function (event) {
var altura = $(window).height() / 1.5;
var scroll = $(window).scrollTop();
$('.corpo-do-texto span').toggleClass('highlighted',
scroll + altura <= $('.corpo-do-texto span').offset().top
);
});
$(window).scroll();
</script>]]>
|
868
| <![CDATA[<script type="text/javascript">
// Altura do album de fotoos
var larguraIframe = document.querySelector('#iframe-fotos').clientWidth;
console.log((larguraIframe / 3) * 2);
document.querySelector('#iframe-fotos').style.height = ((larguraIframe / 3) * 2) + 'px';
</script>]]>
|