Repository: marciolopesjr/rafadotriangulo Branch: main Commit: d76ec2088647 Files: 8 Total size: 14.2 MB Directory structure: gitextract_1nynczwd/ ├── Alessandra.html ├── Alessandra2.html ├── README.md ├── about-me.html ├── assets/ │ └── background.psd ├── index.html ├── not_ready.html └── script.js ================================================ FILE CONTENTS ================================================ ================================================ FILE: Alessandra.html ================================================ Alessandra F. Soares
Dra. Alessandra F. Soares
FISIOTERAPEUTA
CREFITO 5 - 300.112 F
Rua Guarda Marinha Greenwald, 3244
Bairro Zona Nova Tramandaí - RS
(51) 985748882
================================================ FILE: Alessandra2.html ================================================ Alessandra F. Soares
Dra. Alessandra F. Soares
FISIOTERAPEUTA
CREFITO 5 - 300.112 F
Rua Guarda Marinha Greenwald, 3244
Bairro Zona Nova Tramandaí - RS
(51) 985748882
================================================ FILE: README.md ================================================ # TemplateCartoes um template simples para cartões de visita virtuais ================================================ FILE: about-me.html ================================================ Alessandra F. Soares
Dra. Alessandra F. Soares
FISIOTERAPEUTA
CREFITO 5 - 300.112 F
Olá! Sou Alessandra Fernandes Soares fisioterapeuta e sócia-proprietária da clínica NeuroAtiva. A fim de oferecer um atendimento de excelência, possuo:

• Pós graduação em Fisioterapia Cardiorrespiratória e Terapia Intensiva pela UFRGS.

• Certificação pelo método RTA - Reequilíbrio Toracoabdominal.

• Certificação pelo método TR3 - Terapias de Readaptação e Reorganização Respiratórias

• Certificação no tratamento de Disfunções cervico-crânio - mandibulares e cirurgias ortognáticas.

Atuo na área da fisioterapia neurofuncional, cardiorrespiratória, nas disfunções cervico-mandibulares e no tratamento de feridas e queimaduras. Conte comigo se precisar!
================================================ FILE: assets/background.psd ================================================ [File too large to display: 14.1 MB] ================================================ FILE: index.html ================================================ Rafa do Triângulo
Rafael Machado da Rosa Corrêa
Presidente da câmara de vereadores
Tramandaí - 2023
================================================ FILE: not_ready.html ================================================ Rafa do Triângulo

Calma aí!

Isso aqui ainda não está pronto.

Logo logo estará! Clique no botão abaixo para voltar a página anterior.

================================================ FILE: script.js ================================================ //init var container = document.getElementById('background'); var inner = document.getElementById('inner'); //mouse var mouse = { _x:0, _y:0, x:0, y:0, updatePosition: function(event) { var e = event || window.event; this.x = e.clientX - this._x; this.y = (e.clienty - this._y) * -1; }, setOrigin: function(e) { this._x = e.offsetLeft + Math.floor(e.offsetWidth/2); this._y = e.offsetTop + Math.floor(e.offsetHeight/2); }, show: function() { return '(' + this.x + ',' + this.y + } } var counter = 0; var updateRate = 10; var isTimeToUpdate = function() { return counter++ % updateRate === 0; }; var onMouseEventHandler = function(event) { update(event); }; var onMouseLeaveHandler = function() { inner.style = ''; }; var onMouseMoveHandler = function(event) { if (isTimeToUpdate()) { update(event); } }; container.onmouseenter = onMouseEventHandler; container.onmouseleave = onMouseLeaveHandler; container.onmousemove = onMouseMoveHandler;