150
| <![CDATA[<script>
new window.VLibras.Widget('https://vlibras.gov.br/app');
</script>]]>
|
339
| <![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>]]>
|
361
| <![CDATA[<script>
$(function () {
$('.navbar-toggler').click(function () {
$('body').toggleClass('noscroll');
})
});
</script>]]>
|
369
| <![CDATA[<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js"
integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous">
</script>]]>
|
372
| <![CDATA[<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"
integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous">
</script>]]>
|
376
| <![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>]]>
|
415
| <![CDATA[<script>
new window.VLibras.Widget('https://vlibras.gov.br/app');
</script>]]>
|