Logo CEWEB.br Logo NIC.br Logo CGI.br
Home Sobre o projeto

Sites Verificados

Lista com todos os sítios que foram verificados pela TIC Web Acessibilidade. Dentro de cada domínio, há informações detalhadas sobre as páginas coletadas, bem como os erros e avisos de cada uma *.

Endereço Nota Erros Avisos

www.camaramateusleme.mg.gov.br/ouvidoria

85.67 17 79
Recomendações Avaliadas
2.2 Garantir que os objetos programáveis sejam acessíveis.

Recomendações

Número Descrição Quantidade Linhas Código Fonte
2.2.6 Presença do elemento SCRIPT sem o elemento NOSCRIPT 5 167 314 397 419 472
167 <![CDATA[<script type="text/javascript" charset="UTF-8"> new window.VLibras.Widget('https://vlibras.gov.br/app'); </script>]]>
314 <![CDATA[<script type="text/javascript"> jQuery(document).ready(function () { jQuery(".galeriaFotos").nanogallery2({ thumbnailWidth: '280', thumbnailAlignment: 'left', thumbnailBorderVertical: 0, thumbnailBorderHorizontal: 0, thumbnailHoverEffect2: 'toolsAppear|imageScaleIn80', thumbnailLabel: { "titleMultiLine": true }, thumbnailToolbarImage: { topRight: '', }, viewerToolbar: { standard: 'fullscreenButton, closeButton, label', }, viewerTools: { topRight: 'zoomButton,closeButton', }, }); }); var $elemento = $("body").find("*"); //encontra todos os elementos dentro do #content var fonts = []; var fonts_padrao = []; function obterTamanhoFonte() { for (var i = 0; i < $elemento.length; i++) { fonts_padrao.push(parseFloat($elemento.eq(i).css('font-size'))); fonts.push(parseFloat($elemento.eq(i).css('font-size'))); } } obterTamanhoFonte(); $("#btnFontePadrao").click(function () { for (var i = 0; i < $elemento.length; i++) { fonts[i] = fonts_padrao[i]; $elemento.eq(i).css('font-size', fonts_padrao[i]); } }); $("#btnAumentar").click(function () { for (var i = 0; i < $elemento.length; i++) { ++fonts[i]; $elemento.eq(i).css('font-size', fonts[i]); } }); $("#btnDiminuir").click(function () { for (var i = 0; i < $elemento.length; i++) { --fonts[i]; $elemento.eq(i).css('font-size', fonts[i]); } }); $('#contraste').click(function () { if ($(this).hasClass('ativo')) { $(this).removeClass('ativo'); $('#teste-contraste').html(''); $('#logo').attr('src', 'https://www.camaramateusleme.mg.gov.br/assets/img/logo.png'); } else { $(this).addClass('ativo'); $('#teste-contraste').html('<link href="https://www.camaramateusleme.mg.gov.br/assets/css/escuro.css" rel="stylesheet">'); $('#logo').attr('src', 'https://www.camaramateusleme.mg.gov.br/assets/img/logo_branca.png'); } }); $(function () { $('[data-toggle="popover"]').popover() }) var win = null; function NovaJanela(pagina, nome, w, h, scroll) { LeftPosition = (screen.width) ? (screen.width - w) / 2 : 0; TopPosition = (screen.height) ? (screen.height - h) / 2 : 0; settings = 'height=' + h + ',width=' + w + ',top=' + TopPosition + ',left=' + LeftPosition + ',scrollbars=' + scroll + ',resizable'; win = window.open(pagina, nome, settings); } </script>]]>
397 <![CDATA[<script type="text/javascript"> (() => { console.log(!localStorage.aceitecookielgpd) if (!localStorage.aceitecookielgpd) { document.querySelector(".box-cookies").classList.remove('hide'); } const acceptCookies = () => { document.querySelector(".box-cookies").classList.add('hide'); localStorage.setItem("aceitecookielgpd", "aceito"); }; const btnCookies = document.querySelector(".btn-cookies"); btnCookies.addEventListener('click', acceptCookies); })(); </script>]]>
419 <![CDATA[<script type="text/javascript"> $(document).ready(function () { $(":input").inputmask(); if ($('input.telefone').length) { $("input.telefone").each(function () { if ($(this).inputmask('unmaskedvalue') !== null) { if ($(this).inputmask('unmaskedvalue').length > 10) { $(this).inputmask("(99) 99999-999[9]"); } else { $(this).inputmask("(99) 9999-9999[9]"); } } }); } if ($('input.cpf_cnpj').length) { var cpf_cnpj = $("input.cpf_cnpj").inputmask('unmaskedvalue'); if (cpf_cnpj.length > 11) { $("input.cpf_cnpj").inputmask("99.999.999/999[9]-[9][9]"); } else { $("input.cpf_cnpj").inputmask("999.999.999-99[9][9][9]"); } } }); jQuery("input.telefone").inputmask("(99) 9999-9999[9]").keyup(function (event) { var target, phone, element; target = (event.currentTarget) ? event.currentTarget : event.srcElement; phone = target.value.replace(/\D/g, ''); element = $(target); element.inputmask('unmaskedvalue'); if (phone.length > 10) { element.inputmask("(99) 99999-999[9]"); } else { element.inputmask("(99) 9999-9999[9]"); } }); jQuery("input.cpf_cnpj").inputmask("99.999.999/999[9]-[9][9]").keyup(function (event) { var target, cpf_cnpj, element; target = (event.currentTarget) ? event.currentTarget : event.srcElement; cpf_cnpj = target.value.replace(/\D/g, ''); element = $(target); element.inputmask('unmaskedvalue'); if (cpf_cnpj.length > 11) { element.inputmask("99.999.999/999[9]-[9][9]"); } else { element.inputmask("999.999.999-99[9][9][9]"); } }); </script>]]>
472 <![CDATA[<script type="text/javascript"> function esqueceu() { email = document.getElementById("login").value; if (email == '') { alert('Informe seu e-mail!'); } else { frodape.location.href = 'esqueci_senha.asp?email=' + email; } } $('#verifica-email').click(function () { var email = document.getElementById("login").value; if (email == '') { alert('Informe seu e-mail!'); } else { $.ajax({ url: 'verifica-email.asp', type: 'GET', data: 'email=' + email, beforeSend: function (jqXHR) { jqXHR.overrideMimeType('text/html;charset=iso-8859-1'); }, success: function (data) { data = JSON.parse(data); if (data.sucesso == 1) { $('#campos-login').slideDown(); $('#verifica-email').slideUp(); } else { location.href = 'cadastro.asp?email=' + email; } }, error: function (jqXHR, textStatus, errorThrown) { alert('Ocorreu um erro! Tente novamente.'); } }); } }); </script>]]>