176
| <![CDATA[<div class="d-flex" style="width: 100%; gap: 8px;">
<form action="views/busca/index.php" method="GET" onsubmit="return checkquery()" style="flex-grow: 1;">
<input type="hidden" name="action" value="redirect">
<input type="search" name="query" id="query" placeholder="Busca no Portal">
<input type="submit" value="buscar">
</form>
<ul id="rs">
<li><a href="https://www.facebook.com/preflp" title="https://www.facebook.com/preflp" target="_blank">Facebook</a></li>
<li><a href="http://www.twitter.com/preflp" title="http://www.twitter.com/preflp" target="_blank">Twitter</a></li>
<li><a href="https://www.youtube.com/channel/UC8FGc6nNQKBJApAeLpjWjqg" title="https://www.youtube.com/channel/UC8FGc6nNQKBJApAeLpjWjqg" target="_blank">Youtube</a></li>
</ul>
</div>]]>
|
177
| <![CDATA[<form action="views/busca/index.php" method="GET" onsubmit="return checkquery()" style="flex-grow: 1;">
<input type="hidden" name="action" value="redirect">
<input type="search" name="query" id="query" placeholder="Busca no Portal">
<input type="submit" value="buscar">
</form>]]>
|
53
| <![CDATA[<script>
//Google Analytics
(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','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-40755062-1', 'sp.gov.br');
ga('require', 'displayfeatures');
ga('send', 'pageview');
</script>]]>
|
375
| <![CDATA[<script>
$(function(){
var $form = $('#cadnewsletter');
$form.submit(function(){
var $data = $form.serialize();
$form.find('span').children().hide();
$form.find('span').append('<img src="img/interface/loading.gif" alt="">');
$.ajax({
type : 'POST',
url : 'controllers/newsletter.con.php',
data : $data
}).done(function(data){
if(data == "1"){
data = "Cadastro efetuado com sucesso.";
modal(data, 'Sucesso!');
$form[0].reset();
}else{
modal(data, 'Atenção!');
}
$form.find('span').children().show();
$form.find('img').remove();
});
return false;
});
});
</script>]]>
|
488
| <![CDATA[<script type="text/javascript">
$('.openmenu').on('click', 'a', function (e) {
e.preventDefault();
var $nav = $('nav'),
$this = $(this);
if ($this.hasClass('close')) {
$nav.removeClass('open');
$this.removeClass('close');
} else {
$nav.addClass('open');
$this.addClass('close');
}
});
$(window).load(function () {
$('#bannerTopo').nivoSlider({
effect: 'sliceDown',
pauseTime: 5000,
directionNav: false
});
});
//Checa campo de busca
function checkquery() {
$val = $('#query').val();
if ($val.length < 3) {
$('#search').find('span').text('Termo muito curto.').show().animate({
top: '10px'
}, 100);
return false;
}
return true;
}
$('#query').on('focus', function () {
$('#search').find('span').hide().animate({
top: 0
}, 100);
});
//Fixed Menu
$nav = $('nav');
$navHeight = $nav.height();
$vdistance = $nav.offset().top;
$(window).on('scroll', function () {
if ($(window).scrollTop() >= ($vdistance) && $('.openmenu').is(':hidden')) {
$('#navDecoi').css({'height': $navHeight + 'px'});
$nav.addClass('fixedNav');
} else {
$('#navDecoi').css({'height': '0px'});
$nav.removeClass('fixedNav');
}
});
$(function () {
//Back to Top
$('#backTop').on('click', function (e) {
e.preventDefault();
$('html, body').animate({scrollTop: 0}, 600);
});
});
</script>]]>
|