Histórico da Página
| HTML |
|---|
<style>
#title-text {
display: none !important;
</style>
|
| HTML |
|---|
<style>
.expand-control-text {
color: #0897E9;
font-size: 15px !important;
font-weight:500 !important;
}
.expand-icon, .aui-icon, .aui-icon-small, .aui-iconfont-chevron-right {
color: #0897E9;
}
}
.wiki-content img.confluence-embedded-image, .wiki-content img.editor-inline-macro, .wiki-content table.wysiwyg-macro {
cursor: grabbing;
}
ul. {
list-color: #0897E9;
list-style: square;
}
hr {
border-bottom: 5px solid #FEAC0E;
}
</style> |
| HTML |
|---|
<style>
#title-text {
display: none !important;
}
.custom-button{
font-weight: bold}
.composition-banner-overlay{
background:rgba(0,0,0,0.0);min-height:inherit;position:relative;border-radius:5px;
}
}
.composition-banner-title{
color: #000000#FFFAF0!important;
font-weight: 900;
font-style: oblique;
}
.composition-banner-desc{
color: #000000!important;
}
.composition-banner-content {
width:100%;
height:100%;
}
a, a:visited, a:focus, a:hover, a:active, a.blogHeading {
color: #000000;
}
</style> |
| Section | |||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
| HTML |
|---|
<!--Aqui inserimos o texto --> <div class="container"> <p>Jornada do Aprendizado 2022<span class="typed-text"></span><span class="cursor"> </span></p> </div> |
| HTML |
|---|
<!-- Aqui formatamos e damos estilo para fonte -->
<style>
.container {
height: 3vh;
display: flex;
justify-content: center;
align-items: center;
color: #1C1C1C
}
.container p {
font-size: 2rem;
padding: 0.5rem;
font-weight: bold;
letter-spacing: 0.1rem;
text-align: center;
overflow: hidden;
}
.container p span.typed-text {
font-weight: bold;
color: #FEAC0E;
}
.container p span.cursor {
display: inline-block;
background-color: #FFFFF0;
margin-left: 0.1rem;
width: 3px;
animation: blink 1s infinite;
}
.container p span.cursor.typing {
animation: none;
}
</style>
|
| HTML |
|---|
<!--Script que faz a animação da fonte -->
<script>
const typedTextSpan = document.querySelector(".typed-text");
const cursorSpan = document.querySelector(".cursor");
const textArray = [" - SUPORTE PLATAFORMAS", " - SUPORTE PLATAFORMAS", " - SUPORTE PLATAFORMAS", " - SUPORTE PLATAFORMAS"];
const typingDelay = 200;
const erasingDelay = 100;
const newTextDelay = 2000; // Delay between current and next text
let textArrayIndex = 0;
let charIndex = 0;
function type() {
if (charIndex < textArray[textArrayIndex].length) {
if(!cursorSpan.classList.contains("typing")) cursorSpan.classList.add("typing");
typedTextSpan.textContent += textArray[textArrayIndex].charAt(charIndex);
charIndex++;
setTimeout(type, typingDelay);
}
else {
cursorSpan.classList.remove("typing");
setTimeout(erase, newTextDelay);
}
}
function erase() {
if (charIndex > 0) {
if(!cursorSpan.classList.contains("typing")) cursorSpan.classList.add("typing");
typedTextSpan.textContent = textArray[textArrayIndex].substring(0, charIndex-1);
charIndex--;
setTimeout(erase, erasingDelay);
}
else {
cursorSpan.classList.remove("typing");
textArrayIndex++;
if(textArrayIndex>=textArray.length) textArrayIndex=0;
setTimeout(type, typingDelay + 1100);
}
}
document.addEventListener("DOMContentLoaded", function() { // On DOM Load initiate the effect
if(textArray.length) setTimeout(type, newTextDelay + 250);
});
</script> |
| Section | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Column | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
| Page Banner |
|---|
| width | 25% |
|---|
| width | 50% |
|---|
| Column | ||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||
|
| Março
Jurídico | Sisjuri | [email protected] [email protected] |
Bloco K - Registros de Produções | Robson klug / Michele Girardi | 02:30 | 18/03/2021 | 09:30 - 12:00 Compras | Workflow (M-messenger e EventViewer) | Marcos Vinicius | 02:30 | 30/03/2021 | 09:30 - 12:00 | Prime RH | Geração de Títulos SIGAGPE | David Oliveira | 02:30 | 22/03/2021 | 09:00 - 11:30 | Prime RH | Provisão - Conceito e Produto | Miriam Machado | 04:00 | 24/03/2021 | 08:00 - 12:00 | Prime RH | Geração de Títulos SIGAGPE | Fernanda Albuquerque | 02:30 | 26/03/2021 | 09:00 - 12:00 | Card |
Trilha | Treinamento | Instrutor | Hrs Duração | Data | Horário | Card |
id | 5 | label | Maio
Compras | Integração com PMS (Projetos) | Vitor Cappelletti |
App Meu RH Configurações | Rodrigo Carvalheiro | 02:30 | 17/05/2021 | 14:00 -16:30 |
Prime Varejo | SIGALOJA - Venda Assistida - Parte1 | Eduardo Gomes | 06:00 | 18/05/2021 | 14:30 - 17:30 | Prime Varejo | SIGALOJA - Venda Assistida - Parte2 | Eduardo Gomes | 06:00 | 20/05/2021 | 14:30 - 17:30 | Compras | GCT - Básico | Amanda Bárbara | 03:00 | 09:00 - 1224/05/2021
| Junho
Compras | Compras Módulo III - Básico | Marcos Vinicius | 03:00 04/06/2021 09:00 - 12:00
Prime Materiais | TOTVS Colaboração | Giulliano Matheus
09:00 - 10:00 |
Prime Varejo | SIGALOJA - Análise de LOGS | Eduardo Gomes | 03:00 | 09/06/2021 | 14:30 - 17:30 | Financeiro | CNAB - Envio e Retorno | Fabio Mello | 03:00 | 11/06/2021 e 14/06/2021 | 09:00 - 12:00
| Julho
Compras | TOTVS COLABORAÇÃO / IMPORTADOR XML |
10:00 às 12:00 | Compras | CONTROLE DE ALÇADAS COMPLETO | Danilo Justiniano
Alexsandro Guasti Duarte |
Contabilização RH | David Oliveira | 01:30 | 28/07/2021 | 8:30 às 10:00 | Estoque | Engenharia de Produto | Everaldo Silva |
| Agosto
Estoque | Custo Entrada | Wagner Lima |
Estoque | Custo Médio | Wagner Lima |
| Setembro
Conteúdo Programático |
Prime - RH | E-social Não Periódicos | Bruno Costa | análise de eventos | 04:00 | 22/09/2021 | 13:30 às 17:30 | Prime - RH | E-social Periódicos | Bruno Costa | análise de eventos | 04:00 | 23/09/2021 | 13:30 às 17:30 | Prime - RH | Ponto Eletrônico | Miriam Radlov | Demonstração do ponto principais processos. | 04:00 | 27/09/2021 | 13:30 às 17:30 | Compras | Dashboard de Contratos | Amanda Bárbara | Demonstração dos principais pontos da Funcionalidade | 03:00 |
10:00 às 12:00 | Estoque | Contabilização Custo Médio | Wagner Lima | Contabilização Custo Médio | 02:00 | 15/09/2021 | 09:00 às 11:00 | Estoque | Integração PIMS - EAI | Wagner Lima | Integração PIMS - EAI | 02:00 | 22/09/2021 | 09:00 às 11:00 | Card |
Trilha | Treinamento | Instrutor | Conteúdo Programático | Hrs Duração | Data | Horário | Estoque | ACD - MEU COLETOR DE DADOS | Sabrina | ACD Mobile Configuração | 02:00 | 13/10/2021 | 09:00 às 11:00 | Estoque | ACD - INVENTARIO | Everaldo | Inventario | 02:00 | 20/10/2021 09:00 às 11:00 | Prime RH | Medicina e Segurança MDT Protheus - Eventos SST | Bruno | Geração dos eventos SST MDT | 04:00 | 20/10/2021 | 13:30 às 17:30 | Prime RH | Roteiros de Calculo | David | como analisar os roteiros | 01:30 | 22/10/2021 | 13:30 às 15:00 | Prime RH | Roteiros de Calculo | Miriam | como analisar os roteiros | 01:30 | 25/10/2021 | 13:30 às 15:00
Compras | Integração Ativo Fixo | Solange Huerta | Exemplos de Integração Ativo Fixo | 01:30 09/11/2021 | 12:00 às 13:30 | Estoque | Análise de Relatórios Kardex e Fechamento de Estoque | Fernando Henrique | Análise de Relatórios Kardex e Fechamento de Estoque | 02:00 | 10/11/2021 | 09:00 às 11:00 | Estoque | Bloco H | Fernando Henrique | Geração e analise Bloco H | 02:00 | 17/11/2021 | 09:00 às 11:00 | Estoque | Bloco K | Fernando Henrique | Geração e analise Bloco K | 02:00 | 24/11/2021 | 09:00 às 11:00 | TSS | Nota Fiscal de Serviço | Gilcelia Cardoso | Transmissão de Nota Fiscal de Serviço | 02:00 | 24/11/2021 | 10:00 às 12:00 | Card |
Trilha | Treinamento | Instrutor | Conteúdo Programático | Hrs Duração | Data | Horário | |
| width | 25% |
|---|
| width | 30% |
|---|
| width | 30% |
|---|
| Calendário da Universidade
|
| Column | |
|---|---|
|
| |
Visão Geral
Import HTML Content
Conteúdo das Ferramentas
Tarefas




