29
| <![CDATA[<a href="javascript:;" onclick="chageFont()" title="Aumentar e diminuir tamanho da letra"><i class="fa fa-adn"></i></a>]]>
|
30
| <![CDATA[<a href="javascript:;" onclick="chageContrast()" title="Alterar o contraste das cores da pagina"><i class="fa fa-adjust"></i></a>]]>
|
150
| <![CDATA[<script>
new window.VLibras.Widget('https://vlibras.gov.br/app');
</script>]]>
|
327
| <![CDATA[<script>
// When the user scrolls down 20px from the top of the document, show the button
window.onscroll = function () {
scrollFunction()
};
function scrollFunction() {
if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
document.getElementById("movetop").style.display = "block";
} else {
document.getElementById("movetop").style.display = "none";
}
}
// When the user clicks on the button, scroll to the top of the document
function topFunction() {
document.body.scrollTop = 0;
document.documentElement.scrollTop = 0;
}
</script>]]>
|
349
| <![CDATA[<script>
$(function () {
$('.navbar-toggler').click(function () {
$('body').toggleClass('noscroll');
})
});
</script>]]>
|
364
| <![CDATA[<script>
let CLICK = false;
var $elements = Array();
$(document).ready(function() {
$('body *').each(function($key, $element) {
$elements[$key] = ($($element).css('font-size').replace('px', '') * 1);
});
});
function chageFont() {
$('body *').each(function($key, $element) {
let $newSize;
if (CLICK == false) {
$newSize = ($elements[$key] * 1) + 2;
} else {
$newSize = $elements[$key];
}
$($element).css('font-size', $newSize + 'px');
});
CLICK = CLICK == false ? true : false;
}
let CONTRAST = false;
function chageContrast() {
if (CONTRAST == false) {
$('body').addClass('o-contrast');
} else {
$('body').removeClass('o-contrast');
}
CONTRAST = CONTRAST == false ? true : false;
}
</script>]]>
|
403
| <![CDATA[<script>
new window.VLibras.Widget('https://vlibras.gov.br/app');
</script>]]>
|