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

Sites Pertecentes a (o) PR

Endereço Nota Erros Avisos

camaramandaguari.pr.gov.br

76.68 91 988
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 4 42 1275 1294 1356
42 <![CDATA[<script> $(window).scroll(function (event) { if ($(window).width() > "992") { event.stopPropagation(); if ($(window).scrollTop() > '10' && $(window).scrollTop() <= '1910') { $('#menu-lateral').show('fade'); } else { $('#menu-lateral').hide('fade'); } } }); $(document).ready(function () { $('#popup-modal_0').modal('show'); $('#popup-modal_1').modal('show'); }); </script>]]>
1275 <![CDATA[<script type="text/javascript"> /*Iniciação e configuração da biblioteca de acessibilidade*/ $(document).ready(function() { $('header').rafaelmln_acessibilidade( { 'color' : '#fff',//cor dos textos 'background' : 'transparent',//cor de fundo da barra de acessibilidade 'item_menuprincipal' : false,//adicionar ou não item de acesso rápido ao menu [true|false] 'elemento_menuprincipal' : '#menu ul>li>a',//caso o item de acesso rápido ao menu seja requerido, indicar ... 'item_busca' : false,//adicionar ou não item de acesso rápido a busca do site [true|false] 'item_conteudocentral' : true,//adicionar ou não item de acesso rápido ao conteúdo principal do site [true|false] 'item_altocontraste' : true,//adicionar ou não item de alto contraste [true|false] 'elemento_busca' : '#ipt-pesquisa', 'elemento_conteudocentral' : '.icones-centro', 'estilo_altocontraste' : 'http://camaramandaguari.pr.gov.br/css/contraste.css', }); }); </script>]]>
1294 <![CDATA[<script type="text/javascript"> $(document).ready(function(){ $(".owl-carousel").owlCarousel({ navigation: false, nav: false, autoplay:true, autoWidth: false, slideBy: 1, dots:false, margin: 0, loop: false, responsive: { 0: { items: 1 }, 280: { items: 2 }, 400: { items: 3 }, 550: { items: 4 }, 768: { items: 5 }, 993: { items: 7 }, 1201: { items: 9 } } }); }); $(document).ready(function () { $('#popup-modal_').modal('show'); $('#popup-modal_1').modal('show'); }); function openNav() { document.getElementById("pesquisa").style.height = "100%"; } function closeNav() { document.getElementById("pesquisa").style.height = "0%"; } function playerSessao(){ var width = 360; var height = 80; var left = (screen.width - width) / 2; var top = ((screen.height - height) / 2) - 30; window.open('http://camaramandaguari.pr.gov.br/player_sessao.php', 'at', 'height=' +height+ ', width=' +width+ ',status=no, toolbar=no, resizable=no, scrollbars=no, minimizable=no, left=' +left+ ', top=' +top); } (function(i,s,o,g,r,a,m){ i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','https://www.google-analytics.com/analytics.js','ga'); ga('create', '', 'auto'); ga('send', 'pageview'); </script>]]>
1356 <![CDATA[<script type="text/javascript"> $(document).ready(function () { function showAnimateLateral(element) { var descriptionElement = element.getElementsByClassName("description")[0]; var prevWidth = "50px" descriptionElement.style.visibility = "hidden"; descriptionElement.style.display = "block"; element.style.width = 'auto' var endWidth = getComputedStyle(element).width element.style.width = prevWidth element.offsetWidth // force repaint element.style.transition = 'width .1s ease-in-out' element.style.width = endWidth element.addEventListener('transitionend', function transitionEnd(event) { if (event.propertyName == 'width') { element.style.transition = '' element.style.width = 'auto' descriptionElement.style.visibility = "visible"; element.removeEventListener('transitionend', transitionEnd, false) } }, false) } function hideAnimateLateral(element) { var descriptionElement = element.getElementsByClassName("description")[0]; element.style.width = getComputedStyle(element).width element.style.transition = 'width .1s ease-in-out' element.offsetWidth // force repaint element.style.width = '50px' descriptionElement.style.display = "none"; } $('#menu-lateral li').mouseenter(function () { var element = document.getElementById('menu-lateral').children[0].children[$(this).index()]; showAnimateLateral(element); }).mouseleave(function () { var element = document.getElementById('menu-lateral').children[0].children[$(this).index()]; hideAnimateLateral(element); }); $("#menu-lateral").mouseleave(function () { $(this).find('li').each(function (index) { hideAnimateLateral(document.getElementById('menu-lateral').children[0].children[$(this).index()]); }); }); }); </script>]]>