1
| <![CDATA[<div style="display:none">
</div>]]>
|
106
| <![CDATA[<div id="vaiframe" class="jpbox" style="">
<a href="javascript:$('#vaiframe').fadeOut('fast');"><b>FECHAR</b></a>
<hr>
<iframe id="divframe" width="100%" height="100%" src="">
</iframe>
</div>]]>
|
277
| <![CDATA[<div style="text-transform: capitalize">
<li><a href="/publicacoes/447">ACERVO DIGITAL</a></li><li><a href="/publicacoes/466">ATOS DA MESA</a></li><li><a href="/publicacoes/66">AUDIÊNCIAS</a></li><li><a href="/publicacoes/468">CARTA DE SERVIÇOS, MANUAL SITE</a></li><li><a href="/publicacoes/182">COMISSÕES</a></li><li><a href="/publicacoes/89">CONCURSOS</a></li><li><a href="/publicacoes/472">CONTAS ANUAIS / COMUNICADOS</a></li><li><a href="/publicacoes/511">CONTAS DA PREFEITURA</a></li><li><a href="/publicacoes/477">CONVÊNIO</a></li><li><a href="/publicacoes/220">DESPESAS</a></li><li><a href="/publicacoes/504">LEI ORGÂNICA</a></li><li><a href="/publicacoes/1">LICITAÇÕES</a></li><li><a href="/publicacoes/493">LOA/LDO</a></li><li><a href="/publicacoes/56">ORGANOGRAMA ADMINISTRATIVO</a></li><li><a href="/publicacoes/183">PARECERES</a></li> <li><a href="/perguntas">PERGUNTAS FREQUENTES</a></li>
<li><a href="/publicacoes/Todas">VER TODAS...</a></li>
</ul>
</div>]]>
|
378
| <![CDATA[<img class='scale_image' style='width:95%;' src='/arquivos/noticias/20220503_201928.jpg'>]]>
|
379
| <![CDATA[<span style="color: rgb(62, 69, 76); font-family: Roboto, "sans-serif"; font-size: 14px; text-align: justify;">Fotos da Sessão Ordinária realizada no dia 03 de Maio de 2022 ; na Câmara Municipal de Presidente Bernardes</span>]]>
|
379
| <![CDATA[<span style="color: rgb(62, 69, 76); font-family: Roboto, "sans-serif"; font-size: 14px; text-align: justify;"><br></span>]]>
|
379
| <![CDATA[<span style="color: rgb(62, 69, 76);">para visualizar as fotos na galeria.</span>]]>
|
381
| <![CDATA[<button type="button" style="padding: 5px 10px; margin: 4px 5px; color: #333;">
<img src="/audio.png" style='width:20px; height:20px;cursor:pointer;'>
<a id="lerTexto" target="name" class="btn btn-primary" data-toggle="modal" data-target="#myModal">
Ouvir!
</a>
</button>]]>
|
382
| <![CDATA[<img src="/audio.png" style='width:20px; height:20px;cursor:pointer;'>]]>
|
522
| <![CDATA[<spam style=color:"black" font-style:"italic">(18) 3262-1312 | Rua: Dr. Marcelo Drumond Tostes, 205 | Vila São Vicente | Presidente Bernardes - SP | Cep: 19300-000 | Expediente: das 7:00 ás 16:00 horas de segunda a sexta | E-mail: secretaria@camarabernardes.sp.gov.br</spam>]]>
|
34
| <![CDATA[<style>
.jpbox{
display: none;
width: 90%;
background-color: #fff;
height: 400px;
float: left;
top: 200px;
left: 5%;
border: 1px dashed;
z-index: 99999;
position: absolute;
box-shadow: 10px 10px 5px #888888;
}
tbody tr:nth-child(odd) {
background-color: #e9e9e9;
}
.pubtitulo{
font-weight:bold;
text-align:left;
color:#000;
}
.linha{
min-height:70px;
}
</style>]]>
|
71
| <![CDATA[<script>
function abreiframe(id)
{
document.getElementById('divframe').src = '';
document.getElementById('divframe').src = id;
$("#vaiframe").fadeIn('fast');
scrollToElement('#vaiframe');
}
function scrollToElement(selector, time, verticalOffset) {
time = typeof (time) != 'undefined' ? time : 500;
verticalOffset = typeof (verticalOffset) != 'undefined' ? verticalOffset : 0;
element = $(selector);
offset = element.offset();
offsetTop = offset.top + verticalOffset;
$('html, body').animate({
scrollTop: offsetTop
}, time);
}
</script>]]>
|
101
| <![CDATA[<script>
new window.VLibras.Widget('https://vlibras.gov.br/app');
</script>]]>
|
104
| <![CDATA[<script>(function(){var s = document.createElement("script");s.setAttribute("data-account","uCB9MLIkGu");s.setAttribute("src","https://cdn.userway.org/widget.js");document.body.appendChild(s);})();</script>]]>
|
325
| <![CDATA[<script type="text/javascript">
function googleTranslateElementInit() {
new google.translate.TranslateElement({ pageLanguage: 'pt', includedLanguages: 'en,es,pt', layout: google.translate.TranslateElement.InlineLayout.SIMPLE, autoDisplay: false }, 'google_translate_element');
}
</script>]]>
|
538
| <![CDATA[<script>
// flexslider-2 - galeria de fotos
// The slider being synced must be initialized first
$('#carousel').flexslider({
animation: "slide",
controlNav: false,
directionNav: false,
animationLoop: false,
slideshow: false,
prevText:'',
nextText:'',
itemWidth: 100,
asNavFor: '#slider'
});
$('#slider').flexslider({
animation: "slide",
controlNav: false,
animationLoop: false,
animationSpeed: 1000,
prevText:'',
nextText:'',
slideshow: false,
sync: "#carousel"
});
</script>]]>
|
566
| <![CDATA[<script>
const transformarTextoVoz = document.getElementById("lerTexto");
const constcampoTexto = document.getElementById("campoTexto");
var mensagem = new SpeechSynthesisUtterance();
var vozes = speechSynthesis.getVoices();
mensagem.text = constcampoTexto.innerText.replace("Descrição:","");
mensagem.voice = vozes[2];
mensagem.lang = "pt-BR";
mensagem.volume = 1;
mensagem.rate = 1;
mensagem.pitch = 0;
transformarTextoVoz.addEventListener("click", ()=>{
lerTexto();
});
function lerTexto(){
if(transformarTextoVoz.innerText=="Ouvir!")
{
speechSynthesis.speak(mensagem);
transformarTextoVoz.innerText="Parar..."
}
else
{
speechSynthesis.cancel();
transformarTextoVoz.innerText="Ouvir!"
}
}
</script>]]>
|