|
<!DOCTYPE html> |
|
<html lang="fr"> |
|
<head> |
|
<meta charset="UTF-8"> |
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
<title>Programme imagerie m茅dicale 2025-2026</title> |
|
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet"> |
|
<link rel="preconnect" href="https://fonts.googleapis.com"> |
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> |
|
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Roboto+Condensed:wght@700&display=swap" rel="stylesheet"> |
|
<style> |
|
* { |
|
margin: 0; |
|
padding: 0; |
|
box-sizing: border-box; |
|
} |
|
|
|
html, body { |
|
height: 100%; |
|
font-family: 'Lato', sans-serif; |
|
background-color: #f8f9fa; |
|
overflow: hidden; |
|
} |
|
|
|
.slide-container { |
|
width: 100%; |
|
height: 100%; |
|
background: #ffffff; |
|
display: flex; |
|
flex-direction: column; |
|
} |
|
|
|
.header { |
|
background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%); |
|
color: white; |
|
padding: 30px 60px; |
|
text-align: center; |
|
position: relative; |
|
} |
|
|
|
.main-title { |
|
font-family: 'Roboto Condensed', sans-serif; |
|
font-size: 40px; |
|
font-weight: 700; |
|
text-shadow: 1px 1px 3px rgba(0,0,0,0.2); |
|
letter-spacing: 1px; |
|
} |
|
|
|
.content-area { |
|
flex-grow: 1; |
|
display: flex; |
|
flex-direction: column; |
|
padding: 40px 60px; |
|
overflow-y: auto; |
|
} |
|
|
|
.projects-section { |
|
flex-grow: 1; |
|
position: relative; |
|
} |
|
|
|
.gantt-grid { |
|
display: grid; |
|
grid-template-columns: minmax(420px, auto) 80px 1fr; |
|
gap: 0 40px; |
|
} |
|
|
|
.gantt-column-title { |
|
font-family: 'Roboto Condensed', sans-serif; |
|
font-size: 20px; |
|
font-weight: 700; |
|
color: #2c3e50; |
|
padding-bottom: 10px; |
|
border-bottom: 2px solid #34495e; |
|
text-align: left; |
|
align-self: end; |
|
} |
|
.gantt-column-title.center { |
|
text-align: center; |
|
} |
|
|
|
.timeline-header-wrapper { |
|
grid-column: 3 / 4; |
|
} |
|
|
|
.gantt-header { |
|
display: flex; |
|
margin-top: 10px; |
|
} |
|
.quarter-marker { |
|
font-family: 'Roboto Condensed', sans-serif; |
|
flex: 1; |
|
text-align: center; |
|
font-size: 16px; |
|
font-weight: 700; |
|
color: #34495e; |
|
white-space: nowrap; |
|
} |
|
|
|
.project-info, .project-risk-cell, .project-gantt-container { |
|
padding: 25px 0; |
|
border-bottom: 1px solid #eaeded; |
|
display: flex; |
|
align-items: center; |
|
opacity: 0; |
|
animation: fadeInUp 0.6s ease-out forwards; |
|
} |
|
.project-info { |
|
font-size: 20px; |
|
} |
|
.project-icon { |
|
font-size: 24px; |
|
color: #34495e; |
|
margin-right: 20px; |
|
width: 40px; |
|
text-align: center; |
|
} |
|
.project-name { |
|
font-weight: 700; |
|
} |
|
|
|
.project-risk-cell { |
|
justify-content: center; |
|
} |
|
|
|
.risk-tooltip-wrapper { |
|
position: relative; |
|
display: flex; |
|
align-items: center; |
|
} |
|
.risk-indicator { |
|
width: 18px; |
|
height: 18px; |
|
border-radius: 50%; |
|
flex-shrink: 0; |
|
box-shadow: inset 0 1px 2px rgba(255,255,255,0.3), 0 1px 2px rgba(0,0,0,0.2); |
|
cursor: pointer; |
|
} |
|
.risk-high { background: linear-gradient(to bottom, #e74c3c, #c0392b); } |
|
.risk-medium { background: linear-gradient(to bottom, #f39c12, #d35400); } |
|
.risk-low { background: linear-gradient(to bottom, #2ecc71, #27ae60); } |
|
|
|
.tooltip { |
|
position: absolute; |
|
bottom: 150%; |
|
left: 50%; |
|
transform: translateX(-50%); |
|
background-color: #34495e; |
|
color: #fff; |
|
padding: 8px 12px; |
|
border-radius: 5px; |
|
white-space: nowrap; |
|
font-size: 14px; |
|
font-weight: 600; |
|
box-shadow: 0 4px 8px rgba(0,0,0,0.2); |
|
visibility: hidden; |
|
opacity: 0; |
|
transition: opacity 0.3s ease, transform 0.3s ease; |
|
z-index: 10; |
|
} |
|
.tooltip::after { |
|
content: ''; |
|
position: absolute; |
|
top: 100%; left: 50%; |
|
transform: translateX(-50%); |
|
border-width: 5px; border-style: solid; |
|
border-color: #34495e transparent transparent transparent; |
|
} |
|
.risk-tooltip-wrapper:hover .tooltip { |
|
visibility: visible; |
|
opacity: 1; |
|
transform: translateX(-50%) translateY(-5px); |
|
} |
|
|
|
.project-gantt-container { |
|
position: relative; |
|
} |
|
|
|
.gantt-bar { |
|
position: absolute; |
|
height: 28px; |
|
top: 50%; |
|
transform: translateY(-50%); |
|
display: flex; |
|
align-items: center; |
|
gap: 2px; |
|
transform-origin: left center; |
|
animation: grow 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards; |
|
} |
|
.gantt-phase { |
|
height: 100%; |
|
flex-grow: 1; |
|
border-radius: 3px; |
|
display: flex; |
|
align-items: center; |
|
justify-content: center; |
|
color: white; |
|
font-size: 12px; |
|
font-weight: 700; |
|
white-space: nowrap; |
|
overflow: hidden; |
|
text-overflow: ellipsis; |
|
padding: 0 5px; |
|
} |
|
.gantt-phase.init { background: #34495e; } |
|
.gantt-phase.exec { background: #1abc9c; } |
|
.gantt-phase.clot { background: #e67e22; } |
|
|
|
.milestone-gem { |
|
width: 20px; |
|
height: 20px; |
|
transform: rotate(45deg); |
|
flex-shrink: 0; |
|
background-image: radial-gradient(ellipse at center, #f39c12 0%, #e67e22 100%); |
|
border: 1px solid #d35400; |
|
box-shadow: 2px 2px 8px rgba(0,0,0,0.5); |
|
position: relative; |
|
overflow: hidden; |
|
border-radius: 2px; |
|
} |
|
.milestone-gem::after { |
|
content: ''; |
|
position: absolute; |
|
top: -50%; left: -150%; |
|
width: 100%; height: 200%; |
|
background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%); |
|
transform: rotate(25deg); |
|
animation: shimmer 4s infinite linear; |
|
} |
|
|
|
.pacs-philips { left: 0%; width: 25%; } |
|
.decom-ge { left: 0%; width: 50%; } |
|
.pacs2pacs { left: 0%; width: 100%; } |
|
.migration-nexus { left: 0%; width: 75%; } |
|
.ris { left: 0%; width: 100%; } |
|
.interop { left: 0%; width: 50%; } |
|
.ai { left: 0%; width: 75%; } |
|
.mobile-fuji { left: 0%; width: 50%; } |
|
.caresyntax { left: 0%; width: 75%; } |
|
.senoiris { left: 0%; width: 100%; } |
|
.echo-ri { left: 0%; width: 50%; } |
|
.viewpoint-echopac { left: 0%; width: 100%; } |
|
|
|
.decorative-element { |
|
position: absolute; top: 50%; right: 60px; |
|
transform: translateY(-50%); width: 50px; height: 50px; |
|
background: rgba(255,255,255,0.2); border-radius: 50%; |
|
display: flex; align-items: center; justify-content: center; |
|
} |
|
.decorative-element i { font-size: 26px; color: white; } |
|
|
|
@keyframes fadeInUp { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } } |
|
@keyframes grow { from { transform: scaleX(0) translateY(-50%); } to { transform: scaleX(1) translateY(-50%); } } |
|
@keyframes shimmer { from { left: -150%; } to { left: 150%; } } |
|
|
|
</style> |
|
</head> |
|
<body> |
|
<div class="slide-container"> |
|
|
|
<div class="header"> |
|
<h1 class="main-title">Programme imagerie m茅dicale 2025-2026</h1> |
|
<div class="decorative-element"> |
|
<i class="fas fa-atom"></i> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="content-area"> |
|
<div class="projects-section"> |
|
<div class="gantt-grid"> |
|
|
|
<h2 class="gantt-column-title">Projets du programme</h2> |
|
<h2 class="gantt-column-title center">Risques</h2> |
|
<h2 class="gantt-column-title center">Roadmap</h2> |
|
|
|
<div></div><div></div> |
|
<div class="gantt-header"> |
|
<div class="quarter-marker">T3 '25</div> |
|
<div class="quarter-marker">T4 '25</div> |
|
<div class="quarter-marker">T1 '26</div> |
|
<div class="quarter-marker">T2 '26</div> |
|
</div> |
|
|
|
|
|
<div class="project-info" style="animation-delay: 0.2s;"><i class="fas fa-hdd project-icon"></i><span class="project-name">PACS PHILIPS</span></div> |
|
<div class="project-risk-cell" style="animation-delay: 0.2s;"><div class="risk-tooltip-wrapper"><div class="risk-indicator risk-high"></div><div class="tooltip">Bascule non-DICOM</div></div></div> |
|
<div class="project-gantt-container" style="animation-delay: 0.2s;"><div class="gantt-bar pacs-philips" style="animation-delay: 0.4s;"><div class="milestone-gem"></div><div class="gantt-phase clot">Cl么ture</div><div class="milestone-gem"></div></div></div> |
|
|
|
<div class="project-info" style="animation-delay: 0.3s;"><i class="fas fa-trash-alt project-icon"></i><span class="project-name">D茅comissionnement GE</span></div> |
|
<div class="project-risk-cell" style="animation-delay: 0.3s;"><div class="risk-tooltip-wrapper"><div class="risk-indicator risk-high"></div><div class="tooltip">Plus de maintenance apr猫s le 30/09</div></div></div> |
|
<div class="project-gantt-container" style="animation-delay: 0.3s;"><div class="gantt-bar decom-ge" style="animation-delay: 0.5s;"><div class="milestone-gem"></div><div class="gantt-phase init">Initialisation</div><div class="milestone-gem"></div><div class="gantt-phase exec">Mise en 艙uvre</div><div class="milestone-gem"></div></div></div> |
|
|
|
<div class="project-info" style="animation-delay: 0.4s;"><i class="fas fa-exchange-alt project-icon"></i><span class="project-name">Pacs2Pacs</span></div> |
|
<div class="project-risk-cell" style="animation-delay: 0.4s;"><div class="risk-tooltip-wrapper"><div class="risk-indicator risk-medium"></div></div></div> |
|
<div class="project-gantt-container" style="animation-delay: 0.4s;"><div class="gantt-bar pacs2pacs" style="animation-delay: 0.6s;"><div class="milestone-gem"></div><div class="gantt-phase init" style="flex-grow: 1;">Initialisation</div><div class="milestone-gem"></div><div class="gantt-phase exec" style="flex-grow: 2;">Mise en 艙uvre</div><div class="milestone-gem"></div><div class="gantt-phase clot" style="flex-grow: 1;">Cl么ture</div><div class="milestone-gem"></div></div></div> |
|
|
|
<div class="project-info" style="animation-delay: 0.5s;"><i class="fas fa-database project-icon"></i><span class="project-name">Migration Nexus</span></div> |
|
<div class="project-risk-cell" style="animation-delay: 0.5s;"><div class="risk-tooltip-wrapper"><div class="risk-indicator risk-medium"></div></div></div> |
|
<div class="project-gantt-container" style="animation-delay: 0.5s;"><div class="gantt-bar migration-nexus" style="animation-delay: 0.7s;"><div class="milestone-gem"></div><div class="gantt-phase init">Initialisation</div><div class="milestone-gem"></div><div class="gantt-phase exec">Mise en 艙uvre</div><div class="milestone-gem"></div><div class="gantt-phase clot">Cl么ture</div><div class="milestone-gem"></div></div></div> |
|
|
|
<div class="project-info" style="animation-delay: 0.6s;"><i class="fas fa-server project-icon"></i><span class="project-name">RIS Xplore</span></div> |
|
<div class="project-risk-cell" style="animation-delay: 0.6s;"><div class="risk-tooltip-wrapper"><div class="risk-indicator risk-low"></div></div></div> |
|
<div class="project-gantt-container" style="animation-delay: 0.6s;"><div class="gantt-bar ris" style="animation-delay: 0.8s;"><div class="milestone-gem"></div><div class="gantt-phase init">Initialisation</div><div class="milestone-gem"></div><div class="gantt-phase exec">Mise en 艙uvre</div><div class="milestone-gem"></div><div class="gantt-phase clot">Cl么ture</div><div class="milestone-gem"></div></div></div> |
|
|
|
<div class="project-info" style="animation-delay: 0.7s;"><i class="fas fa-project-diagram project-icon"></i><span class="project-name">Interop. DxPlanning/PACS</span></div> |
|
<div class="project-risk-cell" style="animation-delay: 0.7s;"><div class="risk-tooltip-wrapper"><div class="risk-indicator risk-medium"></div></div></div> |
|
<div class="project-gantt-container" style="animation-delay: 0.7s;"><div class="gantt-bar interop" style="animation-delay: 0.9s;"><div class="milestone-gem"></div><div class="gantt-phase init">Initialisation</div><div class="milestone-gem"></div><div class="gantt-phase exec">Mise en 艙uvre</div><div class="milestone-gem"></div></div></div> |
|
|
|
<div class="project-info" style="animation-delay: 0.8s;"><i class="fas fa-brain project-icon"></i><span class="project-name">PYLCLARI AI</span></div> |
|
<div class="project-risk-cell" style="animation-delay: 0.8s;"><div class="risk-tooltip-wrapper"><div class="risk-indicator risk-low"></div></div></div> |
|
<div class="project-gantt-container" style="animation-delay: 0.8s;"><div class="gantt-bar ai" style="animation-delay: 1s;"><div class="milestone-gem"></div><div class="gantt-phase init">Initialisation</div><div class="milestone-gem"></div><div class="gantt-phase exec">Mise en 艙uvre</div><div class="milestone-gem"></div></div></div> |
|
|
|
<div class="project-info" style="animation-delay: 0.9s;"><i class="fas fa-mobile-alt project-icon"></i><span class="project-name">Mobile NANO Fujifilm</span></div> |
|
<div class="project-risk-cell" style="animation-delay: 0.9s;"><div class="risk-tooltip-wrapper"><div class="risk-indicator risk-low"></div></div></div> |
|
<div class="project-gantt-container" style="animation-delay: 0.9s;"><div class="gantt-bar mobile-fuji" style="animation-delay: 1.1s;"><div class="milestone-gem"></div><div class="gantt-phase init">Initialisation</div><div class="milestone-gem"></div><div class="gantt-phase exec">Mise en 艙uvre</div><div class="milestone-gem"></div></div></div> |
|
|
|
<div class="project-info" style="animation-delay: 1.0s;"><i class="fas fa-video project-icon"></i><span class="project-name">caresyntax</span></div> |
|
<div class="project-risk-cell" style="animation-delay: 1.0s;"><div class="risk-tooltip-wrapper"><div class="risk-indicator risk-medium"></div></div></div> |
|
<div class="project-gantt-container" style="animation-delay: 1.0s;"><div class="gantt-bar caresyntax" style="animation-delay: 1.2s;"><div class="milestone-gem"></div><div class="gantt-phase init">Initialisation</div><div class="milestone-gem"></div><div class="gantt-phase exec">Mise en 艙uvre</div><div class="milestone-gem"></div></div></div> |
|
|
|
<div class="project-info" style="animation-delay: 1.1s;"><i class="fas fa-ribbon project-icon"></i><span class="project-name">SenoIris</span></div> |
|
<div class="project-risk-cell" style="animation-delay: 1.1s;"><div class="risk-tooltip-wrapper"><div class="risk-indicator risk-low"></div></div></div> |
|
<div class="project-gantt-container" style="animation-delay: 1.1s;"><div class="gantt-bar senoiris" style="animation-delay: 1.3s;"><div class="milestone-gem"></div><div class="gantt-phase init">Initialisation</div><div class="milestone-gem"></div></div></div> |
|
|
|
<div class="project-info" style="animation-delay: 1.2s;"><i class="fas fa-wave-square project-icon"></i><span class="project-name">D茅ploiement 3 Echo en RI</span></div> |
|
<div class="project-risk-cell" style="animation-delay: 1.2s;"><div class="risk-tooltip-wrapper"><div class="risk-indicator risk-medium"></div></div></div> |
|
<div class="project-gantt-container" style="animation-delay: 1.2s;"><div class="gantt-bar echo-ri" style="animation-delay: 1.4s;"><div class="milestone-gem"></div><div class="gantt-phase init">Initialisation</div><div class="milestone-gem"></div><div class="gantt-phase exec">Mise en 艙uvre</div><div class="milestone-gem"></div></div></div> |
|
|
|
<div class="project-info" style="animation-delay: 1.3s;"><i class="fas fa-heartbeat project-icon"></i><span class="project-name">ViewPoint/EchoPAC</span></div> |
|
<div class="project-risk-cell" style="animation-delay: 1.3s;"><div class="risk-tooltip-wrapper"><div class="risk-indicator risk-medium"></div></div></div> |
|
<div class="project-gantt-container" style="animation-delay: 1.3s;"><div class="gantt-bar viewpoint-echopac" style="animation-delay: 1.5s;"><div class="milestone-gem"></div><div class="gantt-phase init">Initialisation</div><div class="milestone-gem"></div><div class="gantt-phase exec" style="flex-grow: 2;">Mise en 艙uvre</div><div class="milestone-gem"></div><div class="gantt-phase clot">Cl么ture</div><div class="milestone-gem"></div></div></div> |
|
|
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 馃К <a href="https://enzostvs-deepsite.hf.space?remix=Maheri/program" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> |
|
</html> |