App-GitKtti
view release on metacpan or search on metacpan
docs/index.html view on Meta::CPAN
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GitKtti⢠- Git Flow Made Simple</title>
<meta name="description" content="GitKtti⢠is a powerful collection of Perl scripts designed to simplify Git Flow workflow for developers">
<link rel="icon" type="image/png" href="assets/gitktti_logo.png">
<link rel="apple-touch-icon" href="assets/gitktti_logo.png">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
@keyframes float {
0% { transform: translateY(0px); }
50% { transform: translateY(-20px); }
100% { transform: translateY(0px); }
}
@keyframes glow {
0% { box-shadow: 0 0 20px rgba(102, 126, 234, 0.4); }
50% { box-shadow: 0 0 30px rgba(102, 126, 234, 0.8); }
100% { box-shadow: 0 0 20px rgba(102, 126, 234, 0.4); }
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes slideInLeft {
from {
opacity: 0;
transform: translateX(-50px);
}
to {
opacity: 1;
transform: translateX(0);
}
}
@keyframes slideInRight {
from {
opacity: 0;
transform: translateX(50px);
}
to {
opacity: 1;
transform: translateX(0);
}
}
@keyframes starfield {
0% { transform: translateY(0) rotate(0deg); }
100% { transform: translateY(-100vh) rotate(360deg); }
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: #e0e0e0;
background: #0a0a0a;
min-height: 100vh;
overflow-x: hidden;
position: relative;
}
body::before {
content: '';
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background:
radial-gradient(ellipse at 25% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
radial-gradient(ellipse at 75% 50%, rgba(118, 75, 162, 0.1) 0%, transparent 50%),
radial-gradient(ellipse at 50% 25%, rgba(255, 107, 107, 0.05) 0%, transparent 50%);
z-index: -2;
}
.stars {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: -1;
}
.star {
position: absolute;
width: 2px;
height: 2px;
background: white;
border-radius: 50%;
animation: starfield 20s linear infinite;
}
.star:nth-child(odd) {
animation-duration: 25s;
opacity: 0.5;
}
.star:nth-child(3n) {
animation-duration: 15s;
opacity: 0.8;
}
.shooting-star {
position: absolute;
width: 12px;
height: 4px;
background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
border-radius: 50%;
opacity: 0;
animation: shootingStar 4s linear infinite;
box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}
.shooting-star::before {
content: '';
position: absolute;
top: 50%;
left: -30px;
width: 30px;
height: 1px;
background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 100%);
transform: translateY(-50%);
}
.shooting-star:nth-child(even) {
animation-delay: -2s;
animation-duration: 5s;
}
.shooting-star:nth-child(3n) {
animation-delay: -3s;
animation-duration: 3.5s;
}
@keyframes shootingStar {
0% {
opacity: 0;
transform: translateX(-100px) translateY(50px);
}
10% {
opacity: 1;
}
90% {
opacity: 1;
}
100% {
opacity: 0;
transform: translateX(calc(100vw + 100px)) translateY(-200px);
}
}
.container {
max-width: 1400px;
margin: 0 auto;
padding: 0 20px;
}
header {
background: rgba(10, 10, 10, 0.8);
backdrop-filter: blur(20px);
padding: 1.5rem 0;
border-bottom: 1px solid rgba(102, 126, 234, 0.3);
position: sticky;
top: 0;
z-index: 100;
animation: slideInLeft 1s ease-out;
}
.header-content {
display: flex;
justify-content: space-between;
align-items: center;
}
.logo-container {
display: flex;
align-items: center;
gap: 1rem;
}
.git-logo {
width: 50px;
height: 50px;
background: url('assets/gitktti_logo.png') center/contain no-repeat;
filter: drop-shadow(0 0 15px rgba(240, 101, 67, 0.5));
transition: all 0.3s ease;
}
.git-logo:hover {
transform: scale(1.1) rotate(5deg);
filter: drop-shadow(0 0 25px rgba(240, 101, 67, 0.8));
}
.logo {
font-size: 2.5rem;
docs/index.html view on Meta::CPAN
}
.hero .subtitle {
font-size: 1.3rem;
}
.logo {
font-size: 2rem;
}
.features h2,
.aliases-section h2,
.installation h2,
.workflow-section h2 {
font-size: 2rem;
}
.cta-button {
padding: 15px 30px;
font-size: 1rem;
}
}
</style>
</head>
<body>
<div class="stars"></div>
<script>
// Generate stars
function createStars() {
const starsContainer = document.querySelector('.stars');
const numberOfStars = 100;
const numberOfShootingStars = 3;
// Create regular stars
for (let i = 0; i < numberOfStars; i++) {
const star = document.createElement('div');
star.className = 'star';
star.style.left = Math.random() * 100 + '%';
star.style.top = Math.random() * 100 + '%';
star.style.animationDelay = Math.random() * 20 + 's';
starsContainer.appendChild(star);
}
// Create shooting stars
for (let i = 0; i < numberOfShootingStars; i++) {
const shootingStar = document.createElement('div');
shootingStar.className = 'shooting-star';
// Position de départ aléatoire
const startY = Math.random() * 50 + 40; // Entre 40% et 90% de la hauteur
shootingStar.style.top = startY + '%';
shootingStar.style.left = '-50px';
// Trajectoire aléatoire pour chaque étoile
const randomStartY = Math.random() * 100 - 50; // Entre -50px et +50px de variation
const randomEndY = Math.random() * 300 - 150; // Entre -150px et +150px de variation finale
// Créer une animation CSS personnalisée pour cette étoile
const animationName = `shootingStar${i}`;
const keyframes = `
@keyframes ${animationName} {
0% {
opacity: 0;
transform: translateX(-100px) translateY(${randomStartY}px);
}
10% {
opacity: 1;
}
90% {
opacity: 1;
}
100% {
opacity: 0;
transform: translateX(calc(100vw + 100px)) translateY(${-200 + randomEndY}px);
}
}
`;
// Ajouter l'animation personnalisée au document
const style = document.createElement('style');
style.textContent = keyframes;
document.head.appendChild(style);
// Appliquer l'animation personnalisée avec durée aléatoire
const duration = 3 + Math.random() * 3; // Entre 3 et 6 secondes
shootingStar.style.animation = `${animationName} ${duration}s linear infinite`;
shootingStar.style.animationDelay = Math.random() * 8 + 's';
starsContainer.appendChild(shootingStar);
}
}
// Intersection Observer for animations
function setupScrollAnimations() {
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.style.animationPlayState = 'running';
entry.target.style.opacity = '1';
entry.target.style.transform = 'translateY(0)';
}
});
}, { threshold: 0.1 });
document.querySelectorAll('.feature-card, .alias-item, .workflow-step').forEach(el => {
el.style.opacity = '0';
el.style.transform = 'translateY(30px)';
el.style.transition = 'all 0.6s ease';
observer.observe(el);
});
}
document.addEventListener('DOMContentLoaded', () => {
createStars();
setupScrollAnimations();
});
</script>
<body>
<header>
<div class="container">
<div class="header-content">
<div class="logo-container">
<div class="git-logo"></div>
<a href="https://github.com/saumon/gitktti" class="logo">GitKttiâ¢</a>
</div>
</div>
</div>
</header>
<section class="hero">
<div class="container">
<div class="hero-logo"></div>
<h1>GitKttiâ¢</h1>
<p class="subtitle">Git Flow Made Simple</p>
<p class="tagline">A modern CPAN-ready collection of tools designed to streamline your Git Flow workflow</p>
<a href="https://github.com/saumon/gitktti" class="cta-button"><img src="assets/github.png" alt="GitHub" style="height:1.2em; vertical-align:middle; margin-right:0.5em;">View on GitHub</a>
</div>
</section>
<div class="container">
<main class="main-content">
( run in 2.021 seconds using v1.01-cache-2.11-cpan-e1769b4cff6 )