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

Sites Pertecentes a (o) PE

Endereço Nota Erros Avisos

www.cedro.pe.gov.br/campanha.php?pg=COVID-19

73.33 72 1.249
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 7 42 366 474 2223 2595 2624 2656
42 <![CDATA[<script> var tam = 15; function mudaFonte(tipo, elemento) { if (tipo == "mais") { if (tam < 24) tam += 1; } else { if (tam > 10) tam -= 1; } document.getElementById("Noticia").style.fontSize = tam + "px"; document.getElementById("Descricao").style.fontSize = tam + "px"; } function printDiv(id, pg, url) { var oPrint, oJan; oPrint = window.document.getElementById(id).innerHTML; oJan = window.open(pg); oJan.document.write(oPrint); oJan.document.write(url); oJan.window.print(); oJan.document.close(); oJan.focus(); } // Função contraste INICIO (function() { var Contrast = { storage: 'contrastState', cssClass: 'contrast', currentState: null, check: checkContrast, getState: getContrastState, setState: setContrastState, toogle: toogleContrast, updateView: updateViewContrast }; window.toggleContrast = function() { Contrast.toogle(); }; Contrast.check(); function checkContrast() { this.updateView(); } function getContrastState() { return localStorage.getItem(this.storage) === 'true'; } function setContrastState(state) { localStorage.setItem(this.storage, '' + state); this.currentState = state; this.updateView(); } function updateViewContrast() { var body = document.body; if (this.currentState === null) this.currentState = this.getState(); if (this.currentState) body.classList.add(this.cssClass); else body.classList.remove(this.cssClass); } function toogleContrast() { this.setState(!this.currentState); } })(); // Função contraste FIM </script>]]>
366 <![CDATA[<script> $(document).ready(function() { $(window).scroll(function() { if ($(this).scrollTop() > 100) { $("#logo-top-bar").css({ "margin-top": "-25.5Vh", "transition": ".4s", "z-index": "-2" }); $("#logo-top-bar").fadeOut("800"); $('#scroll').fadeIn(); } else { $("#logo-top-bar").fadeIn("800"); $("#logo-top-bar").css({ "margin-top": "0px" }); $('#scroll').fadeOut(); } }); $('#scroll').click(function() { $("html, body").animate({ scrollTop: 0 }, 0); return false; }); $('#menu-acessiblidade').hide().contents().hide(); $('#btnperq').on('click', function(e) { e.preventDefault(); $('#menu-acessiblidade').slideToggle('fast', function(e) { if ($(this).is(':visible')) { $(this).contents().fadeIn(1000); } else { $(this).contents().hide(); } }); }) }); </script>]]>
474 <![CDATA[<script type="text/javascript"> google.charts.load('current', { 'packages': ['corechart'] }); google.charts.setOnLoadCallback(drawChart); function drawChart() { var data = google.visualization.arrayToDataTable([ ['Data', 'CONFIRMADOS', 'ÓBITOS', 'CURADOS', 'ISOLAMENTO' ], ['23/02', 2858, 22, 2801, 35 ], ['24/02', 2865, 22, 2801, 42 ], ['03/03', 2887, 22, 2844, 21 ], ['04/03', 2895, 22, 2859, 14 ], ['10/03', 2904, 23, 2876, 5 ], ['15/03', 2914, 23, 2880, 11 ], ['18/03', 2914, 23, 2886, 5 ], ['22/03', 2915, 24, 2891, 0 ], ['29/03', 2915, 24, 2891, 0 ], ['05/04', 2916, 24, 2892, 0 ], ['07/04', 2917, 24, 2892, 1 ], ['08/04', 2917, 24, 2892, 1 ], ['12/04', 2917, 24, 2895, 0 ], ]); var options = { title: '', height: 400, chartArea: { width: '90%' }, legend: { position: 'top' }, series: { 0: { color: '#e74c3c' }, 1: { color: '#2D3436' }, 2: { color: '#2980b9' }, 3: { color: '#7f8c8d' } }, lineWidth: 4, hAxis: { title: '' }, vAxis: { minValue: 0 } }; var chart = new google.visualization.LineChart(document.getElementById('chart_div')); chart.draw(data, options); var columns = []; var series = {}; for (var i = 0; i < data.getNumberOfColumns(); i++) { columns.push(i); if (i > 0) { series[i - 1] = {}; } } google.visualization.events.addListener(chart, 'select', function () { var sel = chart.getSelection(); // if selection length is 0, we deselected an element if (sel.length > 0) { // if row is undefined, we clicked on the legend if (sel[0].row === null) { var col = sel[0].column; if (columns[col] == col) { // hide the data series columns[col] = { label: data.getColumnLabel(col), type: data.getColumnType(col), calc: function () { return null; }, }; // grey out the legend entry series[col - 1].color = '#CCCCCC'; } else { // show the data series columns[col] = col; series[col - 1].color = null; } var view = new google.visualization.DataView(data); view.setColumns(columns); chart.draw(view, options); } } }); } </script>]]>
2223 <![CDATA[<script> shortcut.add("Alt+H", function() { window.location.assign("index.php"); }); shortcut.add("Alt+Shift+1", function() { window.location.assign("acessibilidade.php"); }); shortcut.add("Alt+9", function() { window.scrollTo(0, 0); }); shortcut.add("Alt+C", function() { window.location.href = '#ancora'; }); </script>]]>
2595 <![CDATA[<script> var cookies2 = document.cookie; if (cookies2.indexOf("usuarioCookiesPm") == -1) { document.getElementById('cookie-container').style.display = "flex"; } function fechaDiv(){ document.cookie = 'usuarioCookiesPm=SIM; max-age=86400;path=/'; $.post("data_cookies.php", { usercookies : "YES" }, function(msg){ }) document.getElementById('cookie-container').style.display = "none"; } </script>]]>
2624 <![CDATA[<script type="text/javascript" language="javascript"> function rolar_para(botaoContatos) { var targetOffset = $(botaoContatos).offset().top; $('html, body').animate({ scrollTop: targetOffset - 100 }, 2000); } $(document).ready( function() { (function($) { $('#filter').keyup(function() { var rex = new RegExp($(this).val(), 'i'); $('.linha').hide(); $('.linha').filter(function() { return rex.test($(this).text()); }).show(); }) }(jQuery)); }); </script>]]>
2656 <![CDATA[<script> $(function() { /* Custom buttons */ $('#font-setting-buttons').easyView({ container: 'body, .row', increaseSelector: '.increase-me', decreaseSelector: '.decrease-me', normalSelector: '.reset-me', contrastSelector: '.change-me' }); }); </script>]]>