Add files via upload
@@ -0,0 +1,35 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Comissão Organizadora - SEI 2016 - Câmpus Francisco Beltrão</title>
|
||||
|
||||
<!-- META TAGS -->
|
||||
<?php include "inc/meta.php"; ?>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<!--TOPO -->
|
||||
<?php
|
||||
include "inc/topo.php";
|
||||
?>
|
||||
<div class="clear"></div>
|
||||
|
||||
<!-- CORPO -->
|
||||
<section class="corpo">
|
||||
<section class="conteudo">
|
||||
<!-- COMISSÃO ORGANIZADORA -->
|
||||
<section class="comissao">
|
||||
<h1>Comissão Organizadora</h1><div class="detalhe"></div><br>
|
||||
Página em construção, aguarde.
|
||||
</section>
|
||||
</section>
|
||||
</section>
|
||||
<div class="clear"></div>
|
||||
|
||||
<!-- RODAPÉ -->
|
||||
<?php
|
||||
include "inc/rodape.php";
|
||||
?>
|
||||
<div class="clear"></div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,124 @@
|
||||
/*
|
||||
* jQuery Nivo Slider v3.2
|
||||
* http://nivo.dev7studios.com
|
||||
*
|
||||
* Copyright 2012, Dev7studios
|
||||
* Free to use and abuse under the MIT license.
|
||||
* http://www.opensource.org/licenses/mit-license.php
|
||||
*/
|
||||
|
||||
/* The Nivo Slider styles */
|
||||
.nivoSlider {
|
||||
position:relative;
|
||||
width:100%;
|
||||
height:auto;
|
||||
overflow: hidden;
|
||||
}
|
||||
.nivoSlider img {
|
||||
position:absolute;
|
||||
top:0px;
|
||||
left:0px;
|
||||
max-width: none;
|
||||
}
|
||||
.nivo-main-image {
|
||||
display: block !important;
|
||||
position: relative !important;
|
||||
width: 100% !important;
|
||||
}
|
||||
|
||||
/* If an image is wrapped in a link */
|
||||
.nivoSlider a.nivo-imageLink {
|
||||
position:absolute;
|
||||
top:0px;
|
||||
left:0px;
|
||||
width:100%;
|
||||
height:100%;
|
||||
border:0;
|
||||
padding:0;
|
||||
margin:0;
|
||||
z-index:6;
|
||||
display:none;
|
||||
background:white;
|
||||
filter:alpha(opacity=0);
|
||||
opacity:0;
|
||||
}
|
||||
/* The slices and boxes in the Slider */
|
||||
.nivo-slice {
|
||||
display:block;
|
||||
position:absolute;
|
||||
z-index:5;
|
||||
height:100%;
|
||||
top:0;
|
||||
}
|
||||
.nivo-box {
|
||||
display:block;
|
||||
position:absolute;
|
||||
z-index:5;
|
||||
overflow:hidden;
|
||||
}
|
||||
.nivo-box img { display:block; }
|
||||
|
||||
/* Caption styles */
|
||||
.nivo-caption {
|
||||
position:absolute;
|
||||
left:0px;
|
||||
bottom:0px;
|
||||
background:#000;
|
||||
color:#fff;
|
||||
width:100%;
|
||||
z-index:8;
|
||||
padding: 5px 10px;
|
||||
opacity: 0.8;
|
||||
overflow: hidden;
|
||||
display: none;
|
||||
-moz-opacity: 0.8;
|
||||
filter:alpha(opacity=8);
|
||||
-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
|
||||
-moz-box-sizing: border-box; /* Firefox, other Gecko */
|
||||
box-sizing: border-box; /* Opera/IE 8+ */
|
||||
}
|
||||
.nivo-caption p {
|
||||
padding:5px;
|
||||
margin:0;
|
||||
}
|
||||
.nivo-caption a {
|
||||
display:inline !important;
|
||||
}
|
||||
.nivo-html-caption {
|
||||
display:none;
|
||||
}
|
||||
/* Direction nav styles (e.g. Next & Prev) */
|
||||
.nivo-directionNav a {
|
||||
position:absolute;
|
||||
top:45%;
|
||||
z-index:9;
|
||||
cursor:pointer;
|
||||
}
|
||||
.nivo-prevNav {
|
||||
left:0px;
|
||||
margin-top: -25px;
|
||||
height: 70px;
|
||||
width: 70px;
|
||||
background-image: url("../img/slides/anterior.png");
|
||||
opacity: 0.3;
|
||||
transition: .2s all ease-in-out;
|
||||
}
|
||||
.nivo-prevNav:hover { opacity: 0.8; }
|
||||
|
||||
.nivo-nextNav {
|
||||
right:0px;
|
||||
margin-top: -25px;
|
||||
height: 70px;
|
||||
width: 70px;
|
||||
background-image: url("../img/slides/proximo.png");
|
||||
opacity: 0.3;
|
||||
transition: .2s all ease-in-out;
|
||||
}
|
||||
.nivo-nextNav:hover { opacity: 0.8; }
|
||||
|
||||
.nivo-controlNav a {
|
||||
cursor:pointer;
|
||||
}
|
||||
.nivo-controlNav a.active {
|
||||
font-weight:bold;
|
||||
}
|
||||
@@ -0,0 +1,107 @@
|
||||
/* REGRAS GERAIS */
|
||||
* { color: #444; padding: 0; margin: 0; font-family: 'Open Sans', sans-serif; font-size: 14px; line-height: 1.5em; }
|
||||
a { text-decoration: none; }
|
||||
img { border: none; }
|
||||
|
||||
/* INPUTS */
|
||||
input { padding: 10px 5px; border-radius: 3px; border: 1px solid #ccc; color: #888; }
|
||||
.btn { border: 2px solid #3fa159; background: #3fa159; color: #fff; cursor: pointer; padding: 10px 45px; text-transform: uppercase; font-weight: bold; transition: .2s all ease-in-out; }
|
||||
.btn:hover { background: #1f8239; }
|
||||
|
||||
.cabecalho, .topo, .corpo, .rodape, rodape_sub { width: 100%; position: relative; }
|
||||
.conteudo { width: 980px; margin: 0 auto; }
|
||||
.clear { clear: both; }
|
||||
.detalhe { width: 45px; height: 2px; background: #3fa159; text-align: center; }
|
||||
|
||||
b { font-weight: bold; }
|
||||
h1 { font-size: 30px; font-weight: bold; text-transform: uppercase; text-align: center; }
|
||||
h3 { font-size: 18px; font-weight: bold; text-transform: uppercase; }
|
||||
p { font-size: 14px; text-align: justify; line-height: 1.5em; text-indent: 30px; }
|
||||
|
||||
/* TOPO */
|
||||
.topo { background: #f0f0f0; border-bottom: 1px solid #ccc; height: 36px; font-size: 13px; }
|
||||
.topo .conteudo .esq { float: left; width: 300px; margin-top: 8px; }
|
||||
.topo .conteudo .dir { float: right; width: 160px; margin-top: 8px; }
|
||||
.topo .conteudo .dir span { padding: 8px; font-weight: 500; }
|
||||
.topo .conteudo .dir span:hover { background: #84c226; color: #fff; }
|
||||
|
||||
/* CABECALHO */
|
||||
.cabecalho { background-image: linear-gradient(to bottom, #f0f0f0, #fff); height: 190px; }
|
||||
.cabecalho .conteudo .logo-info { float: left; width: 980px; }
|
||||
.cabecalho .conteudo .menu { float: left; width: 960px; margin: 0 auto; margin-top: 20px; margin-bottom: 20px; padding: 12px 9px; border-radius: 5px; border-bottom: 4px solid #07802d; background-image: linear-gradient(to bottom, #84c226, #3fa159); }
|
||||
.cabecalho .conteudo .menu ul { list-style: none; }
|
||||
.cabecalho .conteudo .menu ul li { padding: 0 12px; display: inline; }
|
||||
.cabecalho .conteudo .menu ul li a { color: #fff; text-transform: uppercase; font-weight: bold; font-size: 14px; -moz-transition: .3s all ease-in-out; -webkit-transition: .3s all ease-in-out; -o-transition: .3s all ease-in-out; }
|
||||
.cabecalho .conteudo .menu ul li a:hover { text-decoration: underline; color: #f3eb12; }
|
||||
|
||||
/* CONTEUDO HOME */
|
||||
.slides { width: 100%; box-shadow: 0 8px 6px -6px #919191; margin-bottom: 60px; }
|
||||
.corpo .conteudo .evento-home { float: left; width: 450px; padding: 10px 0; margin-right: 40px; }
|
||||
.corpo .conteudo .evento-home .btn-evento { background: #fff; padding: 10px 20px; font-weight: bold; border: 2px solid #1f3682; color: #1f3682; text-transform: uppercase; border-radius: 2px; transiton: .2s all ease-in-out; }
|
||||
.corpo .conteudo .evento-home .btn-evento:hover { border: 2px solid #3fa159; background: #3fa159; color: #fff; cursor: pointer; }
|
||||
.corpo .conteudo .trabalhos-home { float: left; width: 450px; padding: 10px 0; margin-left: 40px; }
|
||||
.corpo .conteudo .trabalhos-home .btn-trabalhos { background: #fff; padding: 10px 20px; font-weight: bold; border: 2px solid #1f3682; color: #1f3682; text-transform: uppercase; border-radius: 2px; transiton: .2s all ease-in-out; }
|
||||
.corpo .conteudo .trabalhos-home .btn-trabalhos:hover { border: 2px solid #3fa159; background: #3fa159; color: #fff; cursor: pointer; }
|
||||
.corpo .conteudo .programacao-home { float: left; width: 980px; padding: 10px 0; margin-top: 50px; margin-bottom: 50px; }
|
||||
.corpo .conteudo .programacao-home img { border-radius: 2px; }
|
||||
|
||||
/* INFORMAÇÕES */
|
||||
.corpo .conteudo .informacoes { float: left; width: 100%; padding: 30px 0; }
|
||||
.corpo .conteudo .informacoes h1 { text-align: left; }
|
||||
|
||||
/* COMISSÃO */
|
||||
.corpo .conteudo .comissao { float: left; width: 100%; padding: 30px 0; }
|
||||
.corpo .conteudo .comissao h1 { text-align: left; }
|
||||
|
||||
/* DOWNLOADS */
|
||||
.corpo .conteudo .downloads { float: left; width: 100%; padding: 30px 0; }
|
||||
.corpo .conteudo .downloads h1 { text-align: left; }
|
||||
|
||||
/* SUBMISSÃO */
|
||||
.corpo .conteudo .submissao { float: left; width: 100%; padding: 30px 0; }
|
||||
.corpo .conteudo .submissao h1 { text-align: left; }
|
||||
|
||||
/* INSCRIÇÕES */
|
||||
.corpo .conteudo .inscricoes { float: left; width: 100%; padding: 30px 0; }
|
||||
.corpo .conteudo .inscricoes h1 { text-align: left; }
|
||||
|
||||
/* PROGRAMAÇÃO */
|
||||
.corpo .conteudo .programacao { float: left; width: 100%; padding: 30px 0; }
|
||||
.corpo .conteudo .programacao h1 { text-align: left; }
|
||||
.corpo .conteudo .programacao .tabela { padding: 5px 10px; border: 1px solid #ccc; border-radius: 3px; }
|
||||
.corpo .conteudo .programacao .tabela .td_titulo { font-weight: bold; text-transform: uppercase; }
|
||||
|
||||
/* RODAPÉ */
|
||||
.rodape { background-image: linear-gradient(to bottom, #e6e6e6, #f4f4f4); height: 250px; border-top: 2px solid #ccc; }
|
||||
.rodape .conteudo { font-size: 13px; }
|
||||
.rodape .conteudo .logo { float: left; width: 250px; }
|
||||
.rodape .conteudo .logo img { width: 150px; margin-top: 40px; }
|
||||
.rodape .conteudo .info { float: left; width: 450px; margin-top: 30px; }
|
||||
.rodape .conteudo .realizacao { float: left; width: 200px; margin-top: 30px; }
|
||||
.rodape .conteudo .realizacao a { color: #3fa159; }
|
||||
.rodape .conteudo .realizacao a:hover { color: #333; }
|
||||
.rodape_sub { height: 40px; background: #3fa159; }
|
||||
.rodape_sub .conteudo .esquerda { float: left; margin-top: 12px; }
|
||||
.rodape_sub .conteudo .esquerda p { color: #fff; font-size: 13px; line-height: 1.5em; }
|
||||
.rodape_sub .conteudo .direita { float: right; margin-top: 12px; }
|
||||
.rodape_sub .conteudo .direita p { color: #fff; font-size: 13px; line-height: 1.5em; }
|
||||
.rodape_sub .conteudo .direita p a { color: #fff; transition: .2s all ease-in-out; font-size: 13px; }
|
||||
.rodape_sub .conteudo .direita p a:hover { color: #f6e810; }
|
||||
|
||||
/* LOGIN */
|
||||
.corpo .conteudo .login { float: left; width: 100%; padding: 30px 0; }
|
||||
.corpo .conteudo .login h1 { text-align: left; }
|
||||
.corpo .conteudo .login .form_login { float: left; width: 400px; margin-right: 100px; padding: 20px; border-radius: 3px; border: 1px solid #ccc; }
|
||||
.corpo .conteudo .login .form_login .email, .senha { width: 390px; }
|
||||
.corpo .conteudo .login .info_login { float: left; width: 400px; }
|
||||
.corpo .conteudo .login .info_login a { font-size: 14px; color: #3fa159; }
|
||||
.corpo .conteudo .login .info_login a:hover { color: #333; }
|
||||
|
||||
/* INSCRIÇÕES */
|
||||
.corpo .conteudo .inscricoes { float: left; width: 100%; padding: 30px 0; }
|
||||
.corpo .conteudo .inscricoes h1 { text-align: left; }
|
||||
.corpo .conteudo .inscricoes .form_inscricoes { float: left; width: 400px; margin-right: 100px; padding: 20px; border-radius: 3px; border: 1px solid #ccc; }
|
||||
.corpo .conteudo .inscricoes .form_inscricoes .nome, .email, .ra, .senha, .r_senha, .campus { width: 390px; }
|
||||
.corpo .conteudo .inscricoes .info_inscricoes { float: left; width: 400px; }
|
||||
.corpo .conteudo .inscricoes .info_inscricoes a { font-size: 14px; color: #3fa159; }
|
||||
.corpo .conteudo .inscricoes .info_inscricoes a:hover { color: #333; }
|
||||
@@ -0,0 +1,35 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Downloads - SEI 2016 - Câmpus Francisco Beltrão</title>
|
||||
|
||||
<!-- META TAGS -->
|
||||
<?php include "inc/meta.php"; ?>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<!--TOPO -->
|
||||
<?php
|
||||
include "inc/topo.php";
|
||||
?>
|
||||
<div class="clear"></div>
|
||||
|
||||
<!-- CORPO -->
|
||||
<section class="corpo">
|
||||
<section class="conteudo">
|
||||
<!-- DOWNLOADS -->
|
||||
<section class="downloads">
|
||||
<h1>Downloads</h1><div class="detalhe"></div><br>
|
||||
Página em construção, aguarde.
|
||||
</section>
|
||||
</section>
|
||||
</section>
|
||||
<div class="clear"></div>
|
||||
|
||||
<!-- RODAPÉ -->
|
||||
<?php
|
||||
include "inc/rodape.php";
|
||||
?>
|
||||
<div class="clear"></div>
|
||||
</body>
|
||||
</html>
|
||||
|
Depois Largura: | Altura: | Tamanho: 361 KiB |
|
Depois Largura: | Altura: | Tamanho: 75 KiB |
|
Depois Largura: | Altura: | Tamanho: 97 KiB |
|
Depois Largura: | Altura: | Tamanho: 205 KiB |
|
Depois Largura: | Altura: | Tamanho: 74 KiB |
|
Depois Largura: | Altura: | Tamanho: 329 KiB |
|
Depois Largura: | Altura: | Tamanho: 342 KiB |
|
Depois Largura: | Altura: | Tamanho: 306 KiB |
|
Depois Largura: | Altura: | Tamanho: 16 KiB |
|
Depois Largura: | Altura: | Tamanho: 16 KiB |
@@ -0,0 +1,25 @@
|
||||
<!-- FAVICON -->
|
||||
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
|
||||
|
||||
<!-- TAGS -->
|
||||
<meta charset="UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="keywords" content="SEI UTFPR 2016, UTFPR-FB, CÂMPUS FRANCISCO BELTRÃO">
|
||||
<meta name="description" content="A UTFPR – Câmpus Francisco Beltrão tem a honra em convidar a comunidade acadêmica interna e externa para participarem do 6º Seminário de extensão e inovação da UTFPR, a ser realizado nos dias 24 e 25 de novembro de 2016.">
|
||||
<meta http-equiv="content-language" content="pt-br">
|
||||
<meta name="robots" content="index, follow">
|
||||
<meta name="reply-to" content="">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Marcos Marcolin e Wellton Costa de Oliveira">
|
||||
|
||||
<!-- CSS -->
|
||||
<link href="css/style.css" rel="stylesheet" />
|
||||
<link href="css/nivo-slider.css" rel="stylesheet" />
|
||||
|
||||
<!-- JS -->
|
||||
<script src="js/jquery-2.2.3.js"></script>
|
||||
<script src="js/script.js"></script>
|
||||
<script src="js/nivo.slider.js"></script>
|
||||
|
||||
<!-- FONTES -->
|
||||
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'>
|
||||
@@ -0,0 +1,31 @@
|
||||
<section class="rodape">
|
||||
<section class="conteudo">
|
||||
<section class="logo">
|
||||
<img src="img/logo.png" />
|
||||
</section>
|
||||
|
||||
<section class="info">
|
||||
<h3>Informações</h3><div class="detalhe"></div><br>
|
||||
6º Seminário de extensão e inovação da UTFPR<br>
|
||||
24 e 25 de Novembro de 2015<br>
|
||||
Local dia 24: Espaço da Arte<br>
|
||||
Local dia 25: UTFPR - Francisco Beltrão<br>
|
||||
DIREC-FB: Diretoria de Relações Empresariais e Comunitárias<br>
|
||||
contato@evento.com.br<br>
|
||||
(46) 3543-0505
|
||||
</section>
|
||||
|
||||
<section class="realizacao">
|
||||
<h3>Realização</h3><div class="detalhe"></div><br>
|
||||
<a href="http://www.utfpr.edu.br/franciscobeltrao" target="_blank">UTFPR-FB</a><br>
|
||||
<a href="http://www.utfpr.edu.br/franciscobeltrao/estrutura-universitaria/diretorias/direc" target="_blank">DIREC</a><br>
|
||||
</section>
|
||||
</section>
|
||||
</section>
|
||||
|
||||
<section class="rodape_sub">
|
||||
<section class="conteudo">
|
||||
<aside class="esquerda"><p>Creative Commons, 2016.</p></aside>
|
||||
<aside class="direita"><p>Front-end por <a href="https://www.facebook.com/marcosmarcolin.mm" target="_blank">Marcos Marcolin</a></p></aside>
|
||||
</section>
|
||||
</section>
|
||||
@@ -0,0 +1,34 @@
|
||||
<section class="topo">
|
||||
<section class="conteudo">
|
||||
<section class="esq">
|
||||
SEI 2016 - UTFPR, Câmpus Francisco Beltrão
|
||||
</section>
|
||||
|
||||
<section class="dir">
|
||||
<a href="inscricoes.php"><span>Inscrever-se</span></a>
|
||||
<a href="login.php"><span>Logar</span></a>
|
||||
</section>
|
||||
</section>
|
||||
</section>
|
||||
|
||||
<section class="cabecalho">
|
||||
<section class="conteudo">
|
||||
<!-- LOGO -->
|
||||
<section class="logo-info">
|
||||
<a href="index.php"><img src="img/logo_info.png" title="SEI 2016" alt="SEI 2016" /></a>
|
||||
</section>
|
||||
<!-- MENU -->
|
||||
<nav class="menu">
|
||||
<ul>
|
||||
<li><a href="index.php">Início</a></li>
|
||||
<li><a href="informacoes.php">Informações</a></li>
|
||||
<li><a href="comissao.php">Comissão Organizadora</a></li>
|
||||
<li><a href="downloads.php">Downloads</a></li>
|
||||
<li><a href="submissao.php">Submissão</a></li>
|
||||
<li><a href="inscricoes.php">Inscrições</a></li>
|
||||
<li><a href="programacao.php">Programação</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
</section>
|
||||
</section>
|
||||
<div class="clear"></clear>
|
||||
@@ -0,0 +1,54 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>SEI 2016 - Câmpus Francisco Beltrão</title>
|
||||
|
||||
<!-- META TAGS -->
|
||||
<?php include "inc/meta.php"; ?>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<!--TOPO -->
|
||||
<?php
|
||||
include "inc/topo.php";
|
||||
?>
|
||||
<div class="clear"></div>
|
||||
|
||||
<!-- CORPO -->
|
||||
<section class="corpo">
|
||||
<section class="conteudo">
|
||||
<!-- SLIDES -->
|
||||
<section class="slider slides">
|
||||
<img alt="" title="" src="img/slides/1.jpg" />
|
||||
<img alt="" title="" src="img/slides/2.jpg" />
|
||||
<img alt="" title="" src="img/slides/3.jpg" />
|
||||
</section>
|
||||
<!-- O EVENTO HOME -->
|
||||
<section class="evento-home">
|
||||
<h1>O Evento</h1><center><div class="detalhe"></div></center><br>
|
||||
<p>A UTFPR – Câmpus Francisco Beltrão tem a honra em convidar a comunidade acadêmica interna e externa para participarem do <b>6º Seminário de extensão e inovação da UTFPR</b>, a ser realizado nos dias 24 e 25 de novembro de 2016.</p><br>
|
||||
<center><a href="informacoes.php"><input type="button" class="btn-evento" value="Saber mais" /><a/></center>
|
||||
</section>
|
||||
<!-- SUBMISSÃO DE TRABALHOS HOME -->
|
||||
<section class="trabalhos-home">
|
||||
<h1>SUBMISSÃO DE TRABALHOS</h1><center><div class="detalhe"></div></center><br>
|
||||
<p>Quer enviar um trabalho? Clique no botão abaixo e veja as instruções para realizar a submissão de seu trabalho. As submissões estarão abertas até dia X de Novembro, e passarão por um processo de avaliação.</p><br>
|
||||
<center><a href="submissao.php"><input type="button" class="btn-trabalhos" value="Submeter trabalho" /><a/></center>
|
||||
</section>
|
||||
<!-- PROGRAMAÇÃO HOME-->
|
||||
<section class="programacao-home">
|
||||
<h1>PROGRAMAÇÃO E INSCRIÇÕES</h1><center><div class="detalhe"></div></center><br>
|
||||
<a href="programacao.php"><img src="img/programacao.jpg" title="Programação do Evento" alt="Programação do Evento" /></a><br><br>
|
||||
<a href="inscricoes.php"><img src="img/inscrever-se.jpg" title="Inscrever-se" alt="Inscrever-se" /></a>
|
||||
</section>
|
||||
</section>
|
||||
</section>
|
||||
<div class="clear"></div>
|
||||
|
||||
<!-- RODAPÉ -->
|
||||
<?php
|
||||
include "inc/rodape.php";
|
||||
?>
|
||||
<div class="clear"></div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,35 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Informações - SEI 2016 - Câmpus Francisco Beltrão</title>
|
||||
|
||||
<!-- META TAGS -->
|
||||
<?php include "inc/meta.php"; ?>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<!--TOPO -->
|
||||
<?php
|
||||
include "inc/topo.php";
|
||||
?>
|
||||
<div class="clear"></div>
|
||||
|
||||
<!-- CORPO -->
|
||||
<section class="corpo">
|
||||
<section class="conteudo">
|
||||
<!-- INFORMAÇÕES -->
|
||||
<section class="informacoes">
|
||||
<h1>Informações</h1><div class="detalhe"></div><br>
|
||||
Página em construção, aguarde.
|
||||
</section>
|
||||
</section>
|
||||
</section>
|
||||
<div class="clear"></div>
|
||||
|
||||
<!-- RODAPÉ -->
|
||||
<?php
|
||||
include "inc/rodape.php";
|
||||
?>
|
||||
<div class="clear"></div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,53 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Inscrições - SEI 2016 - Câmpus Francisco Beltrão</title>
|
||||
|
||||
<!-- META TAGS -->
|
||||
<?php include "inc/meta.php"; ?>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<!--TOPO -->
|
||||
<?php
|
||||
include "inc/topo.php";
|
||||
?>
|
||||
<div class="clear"></div>
|
||||
|
||||
<!-- CORPO -->
|
||||
<section class="corpo">
|
||||
<section class="conteudo">
|
||||
<!-- INSCRIÇÕES -->
|
||||
<section class="inscricoes">
|
||||
<h1>Inscrições</h1><div class="detalhe"></div><br>
|
||||
<!-- FORM INSCRIÇÕES -->
|
||||
<section class="form_inscricoes">
|
||||
<form action="" method="post">
|
||||
<input type="text" name="nome" required placeholder="Nome completo..." class="nome" autofocus /><br><br>
|
||||
<input type="email" name="email" required placeholder="Email..." class="email" autofocus /><br><br>
|
||||
<input type="number" name="ra" required placeholder="RA..." class="ra" autofocus /><br><br>
|
||||
<input type="password" name="senha" required placeholder="Senha..." class="ra" /><br><br>
|
||||
<input type="password" name="r_senha" required placeholder="Repita a Senha..." class="r_senha" /><br><br>
|
||||
<input type="text" name="campus" required placeholder="Em qual Câmpus da UTFPR você estuda?..." class="campus" /><br><br>
|
||||
<input type="submit" name="btn_cad" class="btn btn-cad" value="Inscrever-se" />
|
||||
</form>
|
||||
</section>
|
||||
<!-- INFOS INSCRIÇÕES -->
|
||||
<section class="info_inscricoes">
|
||||
<h3>Informações</h3><div class="detalhe"></div><br>
|
||||
Os nomes e endereços informados neste seminário serão usados exclusivamente para os serviços prestados por este evento, não sendo disponibilizados para outras finalidades ou a terceiros.<br><br>
|
||||
<a href="login.php">Já se increveu? Clique aqui para fazer Login!</a><br>
|
||||
<a href="submissao.php">Submeter trabalho</a>
|
||||
</section>
|
||||
</section>
|
||||
</section>
|
||||
</section>
|
||||
<div class="clear"></div>
|
||||
|
||||
<!-- RODAPÉ -->
|
||||
<?php
|
||||
include "inc/rodape.php";
|
||||
?>
|
||||
<div class="clear"></div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,662 @@
|
||||
/*
|
||||
* jQuery Nivo Slider v3.2
|
||||
* http://nivo.dev7studios.com
|
||||
*
|
||||
* Copyright 2012, Dev7studios
|
||||
* Free to use and abuse under the MIT license.
|
||||
* http://www.opensource.org/licenses/mit-license.php
|
||||
*/
|
||||
|
||||
(function($) {
|
||||
var NivoSlider = function(element, options){
|
||||
// Defaults are below
|
||||
var settings = $.extend({}, $.fn.nivoSlider.defaults, options);
|
||||
|
||||
// Useful variables. Play carefully.
|
||||
var vars = {
|
||||
currentSlide: 0,
|
||||
currentImage: '',
|
||||
totalSlides: 0,
|
||||
running: false,
|
||||
paused: false,
|
||||
stop: false,
|
||||
controlNavEl: false
|
||||
};
|
||||
|
||||
// Get this slider
|
||||
var slider = $(element);
|
||||
slider.data('nivo:vars', vars).addClass('nivoSlider');
|
||||
|
||||
// Find our slider children
|
||||
var kids = slider.children();
|
||||
kids.each(function() {
|
||||
var child = $(this);
|
||||
var link = '';
|
||||
if(!child.is('img')){
|
||||
if(child.is('a')){
|
||||
child.addClass('nivo-imageLink');
|
||||
link = child;
|
||||
}
|
||||
child = child.find('img:first');
|
||||
}
|
||||
// Get img width & height
|
||||
var childWidth = (childWidth === 0) ? child.attr('width') : child.width(),
|
||||
childHeight = (childHeight === 0) ? child.attr('height') : child.height();
|
||||
|
||||
if(link !== ''){
|
||||
link.css('display','none');
|
||||
}
|
||||
child.css('display','none');
|
||||
vars.totalSlides++;
|
||||
});
|
||||
|
||||
// If randomStart
|
||||
if(settings.randomStart){
|
||||
settings.startSlide = Math.floor(Math.random() * vars.totalSlides);
|
||||
}
|
||||
|
||||
// Set startSlide
|
||||
if(settings.startSlide > 0){
|
||||
if(settings.startSlide >= vars.totalSlides) { settings.startSlide = vars.totalSlides - 1; }
|
||||
vars.currentSlide = settings.startSlide;
|
||||
}
|
||||
|
||||
// Get initial image
|
||||
if($(kids[vars.currentSlide]).is('img')){
|
||||
vars.currentImage = $(kids[vars.currentSlide]);
|
||||
} else {
|
||||
vars.currentImage = $(kids[vars.currentSlide]).find('img:first');
|
||||
}
|
||||
|
||||
// Show initial link
|
||||
if($(kids[vars.currentSlide]).is('a')){
|
||||
$(kids[vars.currentSlide]).css('display','block');
|
||||
}
|
||||
|
||||
// Set first background
|
||||
var sliderImg = $('<img/>').addClass('nivo-main-image');
|
||||
sliderImg.attr('src', vars.currentImage.attr('src')).show();
|
||||
slider.append(sliderImg);
|
||||
|
||||
// Detect Window Resize
|
||||
$(window).resize(function() {
|
||||
slider.children('img').width(slider.width());
|
||||
sliderImg.attr('src', vars.currentImage.attr('src'));
|
||||
sliderImg.stop().height('auto');
|
||||
$('.nivo-slice').remove();
|
||||
$('.nivo-box').remove();
|
||||
});
|
||||
|
||||
//Create caption
|
||||
slider.append($('<div class="nivo-caption"></div>'));
|
||||
|
||||
// Process caption function
|
||||
var processCaption = function(settings){
|
||||
var nivoCaption = $('.nivo-caption', slider);
|
||||
if(vars.currentImage.attr('title') != '' && vars.currentImage.attr('title') != undefined){
|
||||
var title = vars.currentImage.attr('title');
|
||||
if(title.substr(0,1) == '#') title = $(title).html();
|
||||
|
||||
if(nivoCaption.css('display') == 'block'){
|
||||
setTimeout(function(){
|
||||
nivoCaption.html(title);
|
||||
}, settings.animSpeed);
|
||||
} else {
|
||||
nivoCaption.html(title);
|
||||
nivoCaption.stop().fadeIn(settings.animSpeed);
|
||||
}
|
||||
} else {
|
||||
nivoCaption.stop().fadeOut(settings.animSpeed);
|
||||
}
|
||||
}
|
||||
|
||||
//Process initial caption
|
||||
processCaption(settings);
|
||||
|
||||
// In the words of Super Mario "let's a go!"
|
||||
var timer = 0;
|
||||
if(!settings.manualAdvance && kids.length > 1){
|
||||
timer = setInterval(function(){ nivoRun(slider, kids, settings, false); }, settings.pauseTime);
|
||||
}
|
||||
|
||||
// Add Direction nav
|
||||
if(settings.directionNav){
|
||||
slider.append('<div class="nivo-directionNav"><a class="nivo-prevNav">'+ settings.prevText +'</a><a class="nivo-nextNav">'+ settings.nextText +'</a></div>');
|
||||
|
||||
$(slider).on('click', 'a.nivo-prevNav', function(){
|
||||
if(vars.running) { return false; }
|
||||
clearInterval(timer);
|
||||
timer = '';
|
||||
vars.currentSlide -= 2;
|
||||
nivoRun(slider, kids, settings, 'prev');
|
||||
});
|
||||
|
||||
$(slider).on('click', 'a.nivo-nextNav', function(){
|
||||
if(vars.running) { return false; }
|
||||
clearInterval(timer);
|
||||
timer = '';
|
||||
nivoRun(slider, kids, settings, 'next');
|
||||
});
|
||||
}
|
||||
|
||||
// Add Control nav
|
||||
if(settings.controlNav){
|
||||
vars.controlNavEl = $('<div class="nivo-controlNav"></div>');
|
||||
slider.after(vars.controlNavEl);
|
||||
for(var i = 0; i < kids.length; i++){
|
||||
if(settings.controlNavThumbs){
|
||||
vars.controlNavEl.addClass('nivo-thumbs-enabled');
|
||||
var child = kids.eq(i);
|
||||
if(!child.is('img')){
|
||||
child = child.find('img:first');
|
||||
}
|
||||
if(child.attr('data-thumb')) vars.controlNavEl.append('<a class="nivo-control" rel="'+ i +'"><img src="'+ child.attr('data-thumb') +'" alt="" /></a>');
|
||||
} else {
|
||||
vars.controlNavEl.append('<a class="nivo-control" rel="'+ i +'">'+ (i + 1) +'</a>');
|
||||
}
|
||||
}
|
||||
|
||||
//Set initial active link
|
||||
$('a:eq('+ vars.currentSlide +')', vars.controlNavEl).addClass('active');
|
||||
|
||||
$('a', vars.controlNavEl).bind('click', function(){
|
||||
if(vars.running) return false;
|
||||
if($(this).hasClass('active')) return false;
|
||||
clearInterval(timer);
|
||||
timer = '';
|
||||
sliderImg.attr('src', vars.currentImage.attr('src'));
|
||||
vars.currentSlide = $(this).attr('rel') - 1;
|
||||
nivoRun(slider, kids, settings, 'control');
|
||||
});
|
||||
}
|
||||
|
||||
//For pauseOnHover setting
|
||||
if(settings.pauseOnHover){
|
||||
slider.hover(function(){
|
||||
vars.paused = true;
|
||||
clearInterval(timer);
|
||||
timer = '';
|
||||
}, function(){
|
||||
vars.paused = false;
|
||||
// Restart the timer
|
||||
if(timer === '' && !settings.manualAdvance){
|
||||
timer = setInterval(function(){ nivoRun(slider, kids, settings, false); }, settings.pauseTime);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
// Event when Animation finishes
|
||||
slider.bind('nivo:animFinished', function(){
|
||||
sliderImg.attr('src', vars.currentImage.attr('src'));
|
||||
vars.running = false;
|
||||
// Hide child links
|
||||
$(kids).each(function(){
|
||||
if($(this).is('a')){
|
||||
$(this).css('display','none');
|
||||
}
|
||||
});
|
||||
// Show current link
|
||||
if($(kids[vars.currentSlide]).is('a')){
|
||||
$(kids[vars.currentSlide]).css('display','block');
|
||||
}
|
||||
// Restart the timer
|
||||
if(timer === '' && !vars.paused && !settings.manualAdvance){
|
||||
timer = setInterval(function(){ nivoRun(slider, kids, settings, false); }, settings.pauseTime);
|
||||
}
|
||||
// Trigger the afterChange callback
|
||||
settings.afterChange.call(this);
|
||||
});
|
||||
|
||||
// Add slices for slice animations
|
||||
var createSlices = function(slider, settings, vars) {
|
||||
if($(vars.currentImage).parent().is('a')) $(vars.currentImage).parent().css('display','block');
|
||||
$('img[src="'+ vars.currentImage.attr('src') +'"]', slider).not('.nivo-main-image,.nivo-control img').width(slider.width()).css('visibility', 'hidden').show();
|
||||
var sliceHeight = ($('img[src="'+ vars.currentImage.attr('src') +'"]', slider).not('.nivo-main-image,.nivo-control img').parent().is('a')) ? $('img[src="'+ vars.currentImage.attr('src') +'"]', slider).not('.nivo-main-image,.nivo-control img').parent().height() : $('img[src="'+ vars.currentImage.attr('src') +'"]', slider).not('.nivo-main-image,.nivo-control img').height();
|
||||
|
||||
for(var i = 0; i < settings.slices; i++){
|
||||
var sliceWidth = Math.round(slider.width()/settings.slices);
|
||||
|
||||
if(i === settings.slices-1){
|
||||
slider.append(
|
||||
$('<div class="nivo-slice" name="'+i+'"><img src="'+ vars.currentImage.attr('src') +'" style="position:absolute; width:'+ slider.width() +'px; height:auto; display:block !important; top:0; left:-'+ ((sliceWidth + (i * sliceWidth)) - sliceWidth) +'px;" /></div>').css({
|
||||
left:(sliceWidth*i)+'px',
|
||||
width:(slider.width()-(sliceWidth*i))+'px',
|
||||
height:sliceHeight+'px',
|
||||
opacity:'0',
|
||||
overflow:'hidden'
|
||||
})
|
||||
);
|
||||
} else {
|
||||
slider.append(
|
||||
$('<div class="nivo-slice" name="'+i+'"><img src="'+ vars.currentImage.attr('src') +'" style="position:absolute; width:'+ slider.width() +'px; height:auto; display:block !important; top:0; left:-'+ ((sliceWidth + (i * sliceWidth)) - sliceWidth) +'px;" /></div>').css({
|
||||
left:(sliceWidth*i)+'px',
|
||||
width:sliceWidth+'px',
|
||||
height:sliceHeight+'px',
|
||||
opacity:'0',
|
||||
overflow:'hidden'
|
||||
})
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
$('.nivo-slice', slider).height(sliceHeight);
|
||||
sliderImg.stop().animate({
|
||||
height: $(vars.currentImage).height()
|
||||
}, settings.animSpeed);
|
||||
};
|
||||
|
||||
// Add boxes for box animations
|
||||
var createBoxes = function(slider, settings, vars){
|
||||
if($(vars.currentImage).parent().is('a')) $(vars.currentImage).parent().css('display','block');
|
||||
$('img[src="'+ vars.currentImage.attr('src') +'"]', slider).not('.nivo-main-image,.nivo-control img').width(slider.width()).css('visibility', 'hidden').show();
|
||||
var boxWidth = Math.round(slider.width()/settings.boxCols),
|
||||
boxHeight = Math.round($('img[src="'+ vars.currentImage.attr('src') +'"]', slider).not('.nivo-main-image,.nivo-control img').height() / settings.boxRows);
|
||||
|
||||
|
||||
for(var rows = 0; rows < settings.boxRows; rows++){
|
||||
for(var cols = 0; cols < settings.boxCols; cols++){
|
||||
if(cols === settings.boxCols-1){
|
||||
slider.append(
|
||||
$('<div class="nivo-box" name="'+ cols +'" rel="'+ rows +'"><img src="'+ vars.currentImage.attr('src') +'" style="position:absolute; width:'+ slider.width() +'px; height:auto; display:block; top:-'+ (boxHeight*rows) +'px; left:-'+ (boxWidth*cols) +'px;" /></div>').css({
|
||||
opacity:0,
|
||||
left:(boxWidth*cols)+'px',
|
||||
top:(boxHeight*rows)+'px',
|
||||
width:(slider.width()-(boxWidth*cols))+'px'
|
||||
|
||||
})
|
||||
);
|
||||
$('.nivo-box[name="'+ cols +'"]', slider).height($('.nivo-box[name="'+ cols +'"] img', slider).height()+'px');
|
||||
} else {
|
||||
slider.append(
|
||||
$('<div class="nivo-box" name="'+ cols +'" rel="'+ rows +'"><img src="'+ vars.currentImage.attr('src') +'" style="position:absolute; width:'+ slider.width() +'px; height:auto; display:block; top:-'+ (boxHeight*rows) +'px; left:-'+ (boxWidth*cols) +'px;" /></div>').css({
|
||||
opacity:0,
|
||||
left:(boxWidth*cols)+'px',
|
||||
top:(boxHeight*rows)+'px',
|
||||
width:boxWidth+'px'
|
||||
})
|
||||
);
|
||||
$('.nivo-box[name="'+ cols +'"]', slider).height($('.nivo-box[name="'+ cols +'"] img', slider).height()+'px');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
sliderImg.stop().animate({
|
||||
height: $(vars.currentImage).height()
|
||||
}, settings.animSpeed);
|
||||
};
|
||||
|
||||
// Private run method
|
||||
var nivoRun = function(slider, kids, settings, nudge){
|
||||
// Get our vars
|
||||
var vars = slider.data('nivo:vars');
|
||||
|
||||
// Trigger the lastSlide callback
|
||||
if(vars && (vars.currentSlide === vars.totalSlides - 1)){
|
||||
settings.lastSlide.call(this);
|
||||
}
|
||||
|
||||
// Stop
|
||||
if((!vars || vars.stop) && !nudge) { return false; }
|
||||
|
||||
// Trigger the beforeChange callback
|
||||
settings.beforeChange.call(this);
|
||||
|
||||
// Set current background before change
|
||||
if(!nudge){
|
||||
sliderImg.attr('src', vars.currentImage.attr('src'));
|
||||
} else {
|
||||
if(nudge === 'prev'){
|
||||
sliderImg.attr('src', vars.currentImage.attr('src'));
|
||||
}
|
||||
if(nudge === 'next'){
|
||||
sliderImg.attr('src', vars.currentImage.attr('src'));
|
||||
}
|
||||
}
|
||||
|
||||
vars.currentSlide++;
|
||||
// Trigger the slideshowEnd callback
|
||||
if(vars.currentSlide === vars.totalSlides){
|
||||
vars.currentSlide = 0;
|
||||
settings.slideshowEnd.call(this);
|
||||
}
|
||||
if(vars.currentSlide < 0) { vars.currentSlide = (vars.totalSlides - 1); }
|
||||
// Set vars.currentImage
|
||||
if($(kids[vars.currentSlide]).is('img')){
|
||||
vars.currentImage = $(kids[vars.currentSlide]);
|
||||
} else {
|
||||
vars.currentImage = $(kids[vars.currentSlide]).find('img:first');
|
||||
}
|
||||
|
||||
// Set active links
|
||||
if(settings.controlNav){
|
||||
$('a', vars.controlNavEl).removeClass('active');
|
||||
$('a:eq('+ vars.currentSlide +')', vars.controlNavEl).addClass('active');
|
||||
}
|
||||
|
||||
// Process caption
|
||||
processCaption(settings);
|
||||
|
||||
// Remove any slices from last transition
|
||||
$('.nivo-slice', slider).remove();
|
||||
|
||||
// Remove any boxes from last transition
|
||||
$('.nivo-box', slider).remove();
|
||||
|
||||
var currentEffect = settings.effect,
|
||||
anims = '';
|
||||
|
||||
// Generate random effect
|
||||
if(settings.effect === 'random'){
|
||||
anims = new Array('sliceDownRight','sliceDownLeft','sliceUpRight','sliceUpLeft','sliceUpDown','sliceUpDownLeft','fold','fade',
|
||||
'boxRandom','boxRain','boxRainReverse','boxRainGrow','boxRainGrowReverse');
|
||||
currentEffect = anims[Math.floor(Math.random()*(anims.length + 1))];
|
||||
if(currentEffect === undefined) { currentEffect = 'fade'; }
|
||||
}
|
||||
|
||||
// Run random effect from specified set (eg: effect:'fold,fade')
|
||||
if(settings.effect.indexOf(',') !== -1){
|
||||
anims = settings.effect.split(',');
|
||||
currentEffect = anims[Math.floor(Math.random()*(anims.length))];
|
||||
if(currentEffect === undefined) { currentEffect = 'fade'; }
|
||||
}
|
||||
|
||||
// Custom transition as defined by "data-transition" attribute
|
||||
if(vars.currentImage.attr('data-transition')){
|
||||
currentEffect = vars.currentImage.attr('data-transition');
|
||||
}
|
||||
|
||||
// Run effects
|
||||
vars.running = true;
|
||||
var timeBuff = 0,
|
||||
i = 0,
|
||||
slices = '',
|
||||
firstSlice = '',
|
||||
totalBoxes = '',
|
||||
boxes = '';
|
||||
|
||||
if(currentEffect === 'sliceDown' || currentEffect === 'sliceDownRight' || currentEffect === 'sliceDownLeft'){
|
||||
createSlices(slider, settings, vars);
|
||||
timeBuff = 0;
|
||||
i = 0;
|
||||
slices = $('.nivo-slice', slider);
|
||||
if(currentEffect === 'sliceDownLeft') { slices = $('.nivo-slice', slider)._reverse(); }
|
||||
|
||||
slices.each(function(){
|
||||
var slice = $(this);
|
||||
slice.css({ 'top': '0px' });
|
||||
if(i === settings.slices-1){
|
||||
setTimeout(function(){
|
||||
slice.animate({opacity:'1.0' }, settings.animSpeed, '', function(){ slider.trigger('nivo:animFinished'); });
|
||||
}, (100 + timeBuff));
|
||||
} else {
|
||||
setTimeout(function(){
|
||||
slice.animate({opacity:'1.0' }, settings.animSpeed);
|
||||
}, (100 + timeBuff));
|
||||
}
|
||||
timeBuff += 50;
|
||||
i++;
|
||||
});
|
||||
} else if(currentEffect === 'sliceUp' || currentEffect === 'sliceUpRight' || currentEffect === 'sliceUpLeft'){
|
||||
createSlices(slider, settings, vars);
|
||||
timeBuff = 0;
|
||||
i = 0;
|
||||
slices = $('.nivo-slice', slider);
|
||||
if(currentEffect === 'sliceUpLeft') { slices = $('.nivo-slice', slider)._reverse(); }
|
||||
|
||||
slices.each(function(){
|
||||
var slice = $(this);
|
||||
slice.css({ 'bottom': '0px' });
|
||||
if(i === settings.slices-1){
|
||||
setTimeout(function(){
|
||||
slice.animate({opacity:'1.0' }, settings.animSpeed, '', function(){ slider.trigger('nivo:animFinished'); });
|
||||
}, (100 + timeBuff));
|
||||
} else {
|
||||
setTimeout(function(){
|
||||
slice.animate({opacity:'1.0' }, settings.animSpeed);
|
||||
}, (100 + timeBuff));
|
||||
}
|
||||
timeBuff += 50;
|
||||
i++;
|
||||
});
|
||||
} else if(currentEffect === 'sliceUpDown' || currentEffect === 'sliceUpDownRight' || currentEffect === 'sliceUpDownLeft'){
|
||||
createSlices(slider, settings, vars);
|
||||
timeBuff = 0;
|
||||
i = 0;
|
||||
var v = 0;
|
||||
slices = $('.nivo-slice', slider);
|
||||
if(currentEffect === 'sliceUpDownLeft') { slices = $('.nivo-slice', slider)._reverse(); }
|
||||
|
||||
slices.each(function(){
|
||||
var slice = $(this);
|
||||
if(i === 0){
|
||||
slice.css('top','0px');
|
||||
i++;
|
||||
} else {
|
||||
slice.css('bottom','0px');
|
||||
i = 0;
|
||||
}
|
||||
|
||||
if(v === settings.slices-1){
|
||||
setTimeout(function(){
|
||||
slice.animate({opacity:'1.0' }, settings.animSpeed, '', function(){ slider.trigger('nivo:animFinished'); });
|
||||
}, (100 + timeBuff));
|
||||
} else {
|
||||
setTimeout(function(){
|
||||
slice.animate({opacity:'1.0' }, settings.animSpeed);
|
||||
}, (100 + timeBuff));
|
||||
}
|
||||
timeBuff += 50;
|
||||
v++;
|
||||
});
|
||||
} else if(currentEffect === 'fold'){
|
||||
createSlices(slider, settings, vars);
|
||||
timeBuff = 0;
|
||||
i = 0;
|
||||
|
||||
$('.nivo-slice', slider).each(function(){
|
||||
var slice = $(this);
|
||||
var origWidth = slice.width();
|
||||
slice.css({ top:'0px', width:'0px' });
|
||||
if(i === settings.slices-1){
|
||||
setTimeout(function(){
|
||||
slice.animate({ width:origWidth, opacity:'1.0' }, settings.animSpeed, '', function(){ slider.trigger('nivo:animFinished'); });
|
||||
}, (100 + timeBuff));
|
||||
} else {
|
||||
setTimeout(function(){
|
||||
slice.animate({ width:origWidth, opacity:'1.0' }, settings.animSpeed);
|
||||
}, (100 + timeBuff));
|
||||
}
|
||||
timeBuff += 50;
|
||||
i++;
|
||||
});
|
||||
} else if(currentEffect === 'fade'){
|
||||
createSlices(slider, settings, vars);
|
||||
|
||||
firstSlice = $('.nivo-slice:first', slider);
|
||||
firstSlice.css({
|
||||
'width': slider.width() + 'px'
|
||||
});
|
||||
|
||||
firstSlice.animate({ opacity:'1.0' }, (settings.animSpeed*2), '', function(){ slider.trigger('nivo:animFinished'); });
|
||||
} else if(currentEffect === 'slideInRight'){
|
||||
createSlices(slider, settings, vars);
|
||||
|
||||
firstSlice = $('.nivo-slice:first', slider);
|
||||
firstSlice.css({
|
||||
'width': '0px',
|
||||
'opacity': '1'
|
||||
});
|
||||
|
||||
firstSlice.animate({ width: slider.width() + 'px' }, (settings.animSpeed*2), '', function(){ slider.trigger('nivo:animFinished'); });
|
||||
} else if(currentEffect === 'slideInLeft'){
|
||||
createSlices(slider, settings, vars);
|
||||
|
||||
firstSlice = $('.nivo-slice:first', slider);
|
||||
firstSlice.css({
|
||||
'width': '0px',
|
||||
'opacity': '1',
|
||||
'left': '',
|
||||
'right': '0px'
|
||||
});
|
||||
|
||||
firstSlice.animate({ width: slider.width() + 'px' }, (settings.animSpeed*2), '', function(){
|
||||
// Reset positioning
|
||||
firstSlice.css({
|
||||
'left': '0px',
|
||||
'right': ''
|
||||
});
|
||||
slider.trigger('nivo:animFinished');
|
||||
});
|
||||
} else if(currentEffect === 'boxRandom'){
|
||||
createBoxes(slider, settings, vars);
|
||||
|
||||
totalBoxes = settings.boxCols * settings.boxRows;
|
||||
i = 0;
|
||||
timeBuff = 0;
|
||||
|
||||
boxes = shuffle($('.nivo-box', slider));
|
||||
boxes.each(function(){
|
||||
var box = $(this);
|
||||
if(i === totalBoxes-1){
|
||||
setTimeout(function(){
|
||||
box.animate({ opacity:'1' }, settings.animSpeed, '', function(){ slider.trigger('nivo:animFinished'); });
|
||||
}, (100 + timeBuff));
|
||||
} else {
|
||||
setTimeout(function(){
|
||||
box.animate({ opacity:'1' }, settings.animSpeed);
|
||||
}, (100 + timeBuff));
|
||||
}
|
||||
timeBuff += 20;
|
||||
i++;
|
||||
});
|
||||
} else if(currentEffect === 'boxRain' || currentEffect === 'boxRainReverse' || currentEffect === 'boxRainGrow' || currentEffect === 'boxRainGrowReverse'){
|
||||
createBoxes(slider, settings, vars);
|
||||
|
||||
totalBoxes = settings.boxCols * settings.boxRows;
|
||||
i = 0;
|
||||
timeBuff = 0;
|
||||
|
||||
// Split boxes into 2D array
|
||||
var rowIndex = 0;
|
||||
var colIndex = 0;
|
||||
var box2Darr = [];
|
||||
box2Darr[rowIndex] = [];
|
||||
boxes = $('.nivo-box', slider);
|
||||
if(currentEffect === 'boxRainReverse' || currentEffect === 'boxRainGrowReverse'){
|
||||
boxes = $('.nivo-box', slider)._reverse();
|
||||
}
|
||||
boxes.each(function(){
|
||||
box2Darr[rowIndex][colIndex] = $(this);
|
||||
colIndex++;
|
||||
if(colIndex === settings.boxCols){
|
||||
rowIndex++;
|
||||
colIndex = 0;
|
||||
box2Darr[rowIndex] = [];
|
||||
}
|
||||
});
|
||||
|
||||
// Run animation
|
||||
for(var cols = 0; cols < (settings.boxCols * 2); cols++){
|
||||
var prevCol = cols;
|
||||
for(var rows = 0; rows < settings.boxRows; rows++){
|
||||
if(prevCol >= 0 && prevCol < settings.boxCols){
|
||||
/* Due to some weird JS bug with loop vars
|
||||
being used in setTimeout, this is wrapped
|
||||
with an anonymous function call */
|
||||
(function(row, col, time, i, totalBoxes) {
|
||||
var box = $(box2Darr[row][col]);
|
||||
var w = box.width();
|
||||
var h = box.height();
|
||||
if(currentEffect === 'boxRainGrow' || currentEffect === 'boxRainGrowReverse'){
|
||||
box.width(0).height(0);
|
||||
}
|
||||
if(i === totalBoxes-1){
|
||||
setTimeout(function(){
|
||||
box.animate({ opacity:'1', width:w, height:h }, settings.animSpeed/1.3, '', function(){ slider.trigger('nivo:animFinished'); });
|
||||
}, (100 + time));
|
||||
} else {
|
||||
setTimeout(function(){
|
||||
box.animate({ opacity:'1', width:w, height:h }, settings.animSpeed/1.3);
|
||||
}, (100 + time));
|
||||
}
|
||||
})(rows, prevCol, timeBuff, i, totalBoxes);
|
||||
i++;
|
||||
}
|
||||
prevCol--;
|
||||
}
|
||||
timeBuff += 100;
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
// Shuffle an array
|
||||
var shuffle = function(arr){
|
||||
for(var j, x, i = arr.length; i; j = parseInt(Math.random() * i, 10), x = arr[--i], arr[i] = arr[j], arr[j] = x);
|
||||
return arr;
|
||||
};
|
||||
|
||||
// For debugging
|
||||
var trace = function(msg){
|
||||
if(this.console && typeof console.log !== 'undefined') { console.log(msg); }
|
||||
};
|
||||
|
||||
// Start / Stop
|
||||
this.stop = function(){
|
||||
if(!$(element).data('nivo:vars').stop){
|
||||
$(element).data('nivo:vars').stop = true;
|
||||
trace('Stop Slider');
|
||||
}
|
||||
};
|
||||
|
||||
this.start = function(){
|
||||
if($(element).data('nivo:vars').stop){
|
||||
$(element).data('nivo:vars').stop = false;
|
||||
trace('Start Slider');
|
||||
}
|
||||
};
|
||||
|
||||
// Trigger the afterLoad callback
|
||||
settings.afterLoad.call(this);
|
||||
|
||||
return this;
|
||||
};
|
||||
|
||||
$.fn.nivoSlider = function(options) {
|
||||
return this.each(function(key, value){
|
||||
var element = $(this);
|
||||
// Return early if this element already has a plugin instance
|
||||
if (element.data('nivoslider')) { return element.data('nivoslider'); }
|
||||
// Pass options to plugin constructor
|
||||
var nivoslider = new NivoSlider(this, options);
|
||||
// Store plugin object in this element's data
|
||||
element.data('nivoslider', nivoslider);
|
||||
});
|
||||
};
|
||||
|
||||
//Default settings
|
||||
$.fn.nivoSlider.defaults = {
|
||||
effect: 'sliceUpLeft',
|
||||
slices: 15,
|
||||
boxCols: 8,
|
||||
boxRows: 4,
|
||||
animSpeed: 500,
|
||||
pauseTime: 7500,
|
||||
startSlide: 0,
|
||||
directionNav: true,
|
||||
controlNav: false,
|
||||
controlNavThumbs: false,
|
||||
pauseOnHover: false,
|
||||
manualAdvance: true,
|
||||
prevText: '',
|
||||
nextText: '',
|
||||
randomStart: true,
|
||||
beforeChange: function(){},
|
||||
afterChange: function(){},
|
||||
slideshowEnd: function(){},
|
||||
lastSlide: function(){},
|
||||
afterLoad: function(){}
|
||||
};
|
||||
|
||||
$.fn._reverse = [].reverse;
|
||||
|
||||
})(jQuery);
|
||||
@@ -0,0 +1,6 @@
|
||||
$(document).ready(function () {
|
||||
|
||||
/* NIVO SLIDER */
|
||||
$('.slider').nivoSlider();
|
||||
|
||||
});
|
||||
@@ -0,0 +1,48 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Acesso - SEI 2016 - Câmpus Francisco Beltrão</title>
|
||||
|
||||
<!-- META TAGS -->
|
||||
<?php include "inc/meta.php"; ?>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<!--TOPO -->
|
||||
<?php
|
||||
include "inc/topo.php";
|
||||
?>
|
||||
<div class="clear"></div>
|
||||
|
||||
<!-- CORPO -->
|
||||
<section class="corpo">
|
||||
<section class="conteudo">
|
||||
<!-- LOGIN -->
|
||||
<section class="login">
|
||||
<h1>Acesso</h1><div class="detalhe"></div><br>
|
||||
<!-- FORM LOGIN -->
|
||||
<section class="form_login">
|
||||
<form action="" method="post">
|
||||
<input type="email" name="email" required placeholder="Email..." class="email" autofocus /><br><br>
|
||||
<input type="password" name="senha" required placeholder="Senha..." class="senha" /><br><br>
|
||||
<input type="submit" name="btn_logar" class="btn btn-logar" value="Logar" />
|
||||
</form>
|
||||
</section>
|
||||
<!-- INFOS LOGIN -->
|
||||
<section class="info_login">
|
||||
<h3>Informações</h3><div class="detalhe"></div><br>
|
||||
<a href="inscricoes.php">Não se inscreveu? Clique aqui para se inscrever-se!</a><br>
|
||||
<a href="#">Esqueci minha senha</a>
|
||||
</section>
|
||||
</section>
|
||||
</section>
|
||||
</section>
|
||||
<div class="clear"></div>
|
||||
|
||||
<!-- RODAPÉ -->
|
||||
<?php
|
||||
include "inc/rodape.php";
|
||||
?>
|
||||
<div class="clear"></div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,93 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Programação - SEI 2016 - Câmpus Francisco Beltrão</title>
|
||||
|
||||
<!-- META TAGS -->
|
||||
<?php include "inc/meta.php"; ?>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<!--TOPO -->
|
||||
<?php
|
||||
include "inc/topo.php";
|
||||
?>
|
||||
<div class="clear"></div>
|
||||
|
||||
<!-- CORPO -->
|
||||
<section class="corpo">
|
||||
<section class="conteudo">
|
||||
<!-- PROGRAMAÇÃO -->
|
||||
<section class="programacao">
|
||||
<h1>Programação</h1><div class="detalhe"></div><br>
|
||||
<!-- 24/11 -->
|
||||
<h3>Dia 24/11, no Espaço da Arte</h3><div class="detalhe"></div><br>
|
||||
<table width="100%" class="tabela">
|
||||
<tr>
|
||||
<td width="10%" class="td_titulo">Horário</td>
|
||||
<td width="90%" class="td_titulo">Evento</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>17h00</td>
|
||||
<td>Recepção e credenciamento</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>19h00</td>
|
||||
<td>Abertura</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>19h30</td>
|
||||
<td>Apresentação artística</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>20h00</td>
|
||||
<td>Palestra da Coordenadoria de Transferência e Inovação Tecnológica(CTIT UFMG)</td>
|
||||
</tr>
|
||||
</table><br><br>
|
||||
|
||||
<!-- 25/11 -->
|
||||
<h3>Dia 25/11, na UTFPR, Câmpus Francisco Beltrão</h3><div class="detalhe"></div><br>
|
||||
<table width="100%" class="tabela">
|
||||
<tr>
|
||||
<td width="10%" class="td_titulo">Horário</td>
|
||||
<td width="90%" class="td_titulo">Evento</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>08h00</td>
|
||||
<td>Montagem dos Pôsteres pelos autores</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>08h30</td>
|
||||
<td>Curso de Implementos e máquinas agrícolas para pequenas propriedades - público externo</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>09h00</td>
|
||||
<td>Apresentação dos Pôsteres de áreas e HT(Hotel Tecnológico) e IUT(Incubadora Universitária Tecnológica)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>09h00</td>
|
||||
<td>Reunião Depex</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>09h00</td>
|
||||
<td>Reunião AGINT, participação da UFMG</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>10h00</td>
|
||||
<td>Apresentação dos trabalhos selecionados</td>
|
||||
</tr>
|
||||
</table>
|
||||
</section>
|
||||
</section>
|
||||
</section>
|
||||
<div class="clear"></div>
|
||||
|
||||
<!-- RODAPÉ -->
|
||||
<?php
|
||||
include "inc/rodape.php";
|
||||
?>
|
||||
<div class="clear"></div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,35 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Submissão de Trabalhos - SEI 2016 - Câmpus Francisco Beltrão</title>
|
||||
|
||||
<!-- META TAGS -->
|
||||
<?php include "inc/meta.php"; ?>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<!--TOPO -->
|
||||
<?php
|
||||
include "inc/topo.php";
|
||||
?>
|
||||
<div class="clear"></div>
|
||||
|
||||
<!-- CORPO -->
|
||||
<section class="corpo">
|
||||
<section class="conteudo">
|
||||
<!-- SUBMISSÃO DE TRABALHOS -->
|
||||
<section class="submissao">
|
||||
<h1>Submissão de trabalhos</h1><div class="detalhe"></div><br>
|
||||
Página em construção, aguarde.
|
||||
</section>
|
||||
</section>
|
||||
</section>
|
||||
<div class="clear"></div>
|
||||
|
||||
<!-- RODAPÉ -->
|
||||
<?php
|
||||
include "inc/rodape.php";
|
||||
?>
|
||||
<div class="clear"></div>
|
||||
</body>
|
||||
</html>
|
||||