205
| <![CDATA[<i class="fa fa-laptop" style="margin:0 1px;"> </i>]]>
|
281
| <![CDATA[<h3 class="panel-title" style="text-transform:uppercase">
<i class="fa fa-file-text-o"></i> Página não encontrada
<div class="btn-group pull-right no-print">
<a class="btn btn-xs btn-default" title="Voltar para o início" href="http://www.camaraanchieta.es.gov.br/e-ouv"><i class="fa fa-home"></i></a>
</div>
</h3>]]>
|
354
| <![CDATA[<style>
/* GOOGLE ANALYTICS */
.cookies-container {
color: #222;
position: fixed;
bottom: 2rem;
z-index: 1000;
}
.card-title {
font-style: normal;
font-weight: normal;
font-size: 21px;
line-height: 1.5;
margin-bottom: 20px;
margin-top: 0;
}
.card-link {
font-weight: bold;
text-decoration: none;
color: #2F2F2F;
}
.card-text {
font-style: normal;
font-weight: normal;
line-height: 150%;
align-items: center;
color: #505050;
}
.cookies-content {
background: white;
padding: 20px;
opacity: 0;
transform: translateY(1rem);
animation: slideUp 0.5s forwards;
border-radius: 4px;
background: rgba(251, 251, 251, 0.95);
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.7);
}
@keyframes slideUp {
to {
transform: initial;
opacity: initial;
}
}
.cookies-pref label {
margin-right: 1rem;
}
.cookies-save {
grid-column: 2;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
background: var(--Primary0);
color: white;
cursor: pointer;
border: none;
border-radius: 5px;
padding: 0.8rem 2rem;
font-size: 16px;
}
.cookies-save:hover {
background: var(--Primary2);
transition: .3s;
}
@media (max-width: 500px) {
.cookies-content {
grid-template-columns: 1fr;
}
.cookies-save {
grid-column: 1;
grid-row: 3;
}
}
</style>]]>
|
183
| <![CDATA[<button type="button" onclick="toggleContrast()" accesskey="5" data-toggle="tooltip" data-placement="bottom" data-container="body" data-title="Aplicar auto contraste" class="btn btn-xs"><span class="sr-only">Ação para
aplicar auto contraste no site</span><i class="fa fa-adjust" aria-hidden="true"></i></button>]]>
|
80
| <![CDATA[<script>
function cidades(estado, cidades) {
var estado_id = $('#estado option[value="' + estado + '"]').attr('rel');
$('#estado_id').val(estado_id);
$('#cidade').empty().append('<option value="">Selecione</option>');
$.each(cidades, function(key, obj) {
if (obj.uf == estado) {
$('#cidade').append('<option value="' + obj.nome + '" rel="' + key + '">' + obj.nome + '</option>');
}
});
}
$(function() {
var cidades_lista = ;
cidades('Selecione', cidades_lista);
$('#estado').change(function() {
var valor = $('#estado option:selected').val();
if (valor != '') {
cidades(valor, cidades_lista);
}
});
$('#cidade').change(function() {
var valor = $('#cidade option:selected').attr('rel');
if (valor != '') {
$('#cidade_id').val(valor);
}
});
});
function verificarCheckBox() {
var semCPF = document.getElementById('itemCheck');
document.getElementById('cpf').classList.toggle('validate[required,custom[cpf]]');
}
</script>]]>
|
116
| <![CDATA[<script>
$(document).ready(function() {
// validation
var form = $('#form_');
form.validationEngine('attach', {
onValidationComplete: function(form, status) {
if (status) {
$('body').append(
'<div id="body_mask">Aguarde...enviando dados...<br><i class="fa fa-refresh fa-spin"></i></div>');
grecaptcha.execute('6Lekfr8UAAAAADAdAEfiMNQm5XXXJGqe7QU3JPY6').then(function(token) {
// add token value to form
document.getElementById('g-recaptcha-response').value = token;
form.submit();
});
form.validationEngine('detach');
} else {
$('#body_mask').remove();
}
},
autoHidePrompt: true,
promptPosition: "topLeft"
});
});
</script>]]>
|
209
| <![CDATA[<script>
document.body.addEventListener('keydown', function(evento) {
if (evento.altKey && evento.key === "1") {
// Realiza uma ação, talvez até a operação de 'desfazer'
document.querySelector("#acessibilidade_pag_inicial").click();
}
if (evento.altKey && evento.key === "2") {
// Realiza uma ação, talvez até a operação de 'desfazer'
document.querySelector('#acessibilidade_conteudo').click();
}
if (evento.altKey && evento.key === "3") {
// Realiza uma ação, talvez até a operação de 'desfazer'
document.querySelector('#acessibilidade_aumentarfonte').click();
}
if (evento.altKey && evento.key === "4") {
// Realiza uma ação, talvez até a operação de 'desfazer'
document.querySelector('#acessibilidade_diminuirfonte').click();
}
if (evento.altKey && evento.key === "5") {
// Realiza uma ação, talvez até a operação de 'desfazer'
document.querySelector('#acessibilidade_contraste').click();
}
if (evento.altKey && evento.key === "6") {
// Realiza uma ação, talvez até a operação de 'desfazer'
document.querySelector('#acessibilidade_acessar_acessibilidade').click();
}
if (evento.altKey && evento.key === "7") {
// Realiza uma ação, talvez até a operação de 'desfazer'
document.querySelector('#acessibilidade_nvda').click();
}
if (evento.altKey && evento.key === "8") {
// Realiza uma ação, talvez até a operação de 'desfazer'
document.querySelector('#acessibilidade_vlibras').click();
}
if (evento.altKey && evento.key === "9") {
// Realiza uma ação, talvez até a operação de 'desfazer'
document.querySelector('#acessibilidade_intranet').click();
}
});
</script>]]>
|
329
| <![CDATA[<script>
$(document).ready(function() {
$(".select2").select2({
placeholder: "Todas",
allowClear: true,
width: '100%'
});
});
</script>]]>
|
343
| <![CDATA[<script>
(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', 'UA-78100420-1', 'auto');
ga('send', 'pageview');
</script>]]>
|
462
| <![CDATA[<script>
function cookies(functions) {
const clientName = 'wwwcamaraanchieta';
const container = document.querySelector('.cookies-container');
const save = document.querySelector('.cookies-save');
if (!container || !save) return null;
const localPref = JSON.parse(window.localStorage.getItem('cookies-pref' + clientName));
if (localPref) activateFunctions(localPref);
function getFormPref() {
return [...document.querySelectorAll('[data-function]')]
.filter((el) => el.checked)
.map((el) => el.getAttribute('data-function'));
}
function activateFunctions(pref) {
pref.forEach((f) => functions[f]());
container.style.display = 'none';
window.localStorage.setItem('cookies-pref' + clientName, JSON.stringify(pref));
}
function handleSave() {
const pref = getFormPref();
activateFunctions(pref);
}
save.addEventListener('click', handleSave);
}
function analytics() {
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', '');
console.log('Função anali..');
}
function simplecookie() {
console.log('Política de Privacidade Autorizada');
}
cookies({
simplecookie, });
</script>]]>
|
524
| <![CDATA[<script>
new window.VLibras.Widget('https://vlibras.gov.br/app');
</script>]]>
|