README / index.html
Rahul0505's picture
Update index.html
4f602e9 verified
raw
history blame
13.6 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Coding Club - RVCE</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
overflow-x: hidden;
cursor: default;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 40px 20px;
}
/* Header Section */
.header {
text-align: center;
color: white;
margin-bottom: 60px;
animation: fadeInDown 1s ease-out;
}
.header h1 {
font-size: 4rem;
font-weight: 800;
margin-bottom: 10px;
text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
letter-spacing: -1px;
}
.header .subtitle {
font-size: 1.5rem;
opacity: 0.95;
font-weight: 300;
letter-spacing: 1px;
}
.divider {
width: 100px;
height: 4px;
background: white;
margin: 30px auto;
border-radius: 2px;
animation: expandWidth 1s ease-out 0.5s both;
}
/* Tech Stack Section */
.tech-stack-section {
background: rgba(255, 255, 255, 0.95);
border-radius: 30px;
padding: 50px 40px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
animation: fadeInUp 1s ease-out 0.3s both;
}
.tech-stack-section h2 {
text-align: center;
font-size: 2.5rem;
color: #333;
margin-bottom: 20px;
font-weight: 700;
}
.tech-stack-section .description {
text-align: center;
color: #666;
font-size: 1.1rem;
margin-bottom: 50px;
max-width: 700px;
margin-left: auto;
margin-right: auto;
}
/* 3D Interactive Tech Stack Grid */
.tech-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 30px;
perspective: 1000px;
margin-bottom: 40px;
}
.tech-card {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
border-radius: 20px;
padding: 40px 20px;
text-align: center;
color: white;
transition: all 0.3s ease;
transform-style: preserve-3d;
cursor: pointer;
position: relative;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.tech-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
opacity: 0;
transition: opacity 0.3s ease;
}
.tech-card:hover::before {
opacity: 1;
}
.tech-card:hover {
transform: translateY(-10px) scale(1.05);
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
.tech-icon {
font-size: 4rem;
margin-bottom: 20px;
display: inline-block;
transition: transform 0.3s ease;
}
.tech-card:hover .tech-icon {
transform: rotateY(360deg) scale(1.2);
}
.tech-name {
font-size: 1.5rem;
font-weight: 700;
margin-bottom: 10px;
}
.tech-description {
font-size: 0.9rem;
opacity: 0.9;
line-height: 1.5;
}
/* Color variants for different tech */
.tech-card.pytorch {
background: linear-gradient(135deg, #EE4C2C 0%, #FF6B45 100%);
}
.tech-card.tensorflow {
background: linear-gradient(135deg, #FF6F00 0%, #FF8F00 100%);
}
.tech-card.numpy {
background: linear-gradient(135deg, #013243 0%, #4DABCF 100%);
}
.tech-card.pandas {
background: linear-gradient(135deg, #150458 0%, #3B0A78 100%);
}
.tech-card.jax {
background: linear-gradient(135deg, #5E4FA2 0%, #8C6BB1 100%);
}
.tech-card.cuda {
background: linear-gradient(135deg, #76B900 0%, #8ED100 100%);
}
/* Stats Section */
.stats-section {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
margin-top: 50px;
}
.stat-card {
background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
padding: 30px;
border-radius: 15px;
text-align: center;
color: white;
transition: transform 0.3s ease;
}
.stat-card:hover {
transform: translateY(-5px);
}
.stat-number {
font-size: 3rem;
font-weight: 800;
margin-bottom: 10px;
}
.stat-label {
font-size: 1rem;
opacity: 0.9;
text-transform: uppercase;
letter-spacing: 1px;
}
/* Floating Animation */
@keyframes float {
0%, 100% { transform: translateY(0px); }
50% { transform: translateY(-20px); }
}
.floating {
animation: float 3s ease-in-out infinite;
}
/* Fade In Animations */
@keyframes fadeInDown {
from {
opacity: 0;
transform: translateY(-50px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(50px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes expandWidth {
from {
width: 0;
}
to {
width: 100px;
}
}
/* Footer */
.footer {
text-align: center;
color: white;
margin-top: 60px;
padding: 30px;
font-size: 1rem;
opacity: 0.9;
}
.footer a {
color: white;
text-decoration: none;
font-weight: 600;
border-bottom: 2px solid white;
transition: opacity 0.3s ease;
}
.footer a:hover {
opacity: 0.7;
}
/* Responsive Design */
@media (max-width: 768px) {
.header h1 {
font-size: 2.5rem;
}
.header .subtitle {
font-size: 1.2rem;
}
.tech-stack-section {
padding: 30px 20px;
}
.tech-grid {
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: 20px;
}
}
</style>
</head>
<body>
<div class="container">
<!-- Header -->
<div class="header">
<h1 class="floating">💻 Coding Club - RVCE</h1>
<div class="divider"></div>
<p class="subtitle">Building the Future, One Line of Code at a Time</p>
</div>
<!-- Tech Stack Section -->
<div class="tech-stack-section">
<h2>🚀 Our Tech Stack</h2>
<p class="description">
Hover over each technology to interact with it! We leverage cutting-edge frameworks and tools to build innovative AI and ML solutions.
</p>
<div class="tech-grid" id="techGrid">
<div class="tech-card pytorch" data-tilt>
<div class="tech-icon">🔥</div>
<div class="tech-name">PyTorch</div>
<div class="tech-description">Deep Learning Framework</div>
</div>
<div class="tech-card tensorflow" data-tilt>
<div class="tech-icon">🧠</div>
<div class="tech-name">TensorFlow</div>
<div class="tech-description">ML Platform</div>
</div>
<div class="tech-card numpy" data-tilt>
<div class="tech-icon">🔢</div>
<div class="tech-name">NumPy</div>
<div class="tech-description">Numerical Computing</div>
</div>
<div class="tech-card pandas" data-tilt>
<div class="tech-icon">🐼</div>
<div class="tech-name">Pandas</div>
<div class="tech-description">Data Analysis</div>
</div>
<div class="tech-card jax" data-tilt>
<div class="tech-icon"></div>
<div class="tech-name">JAX</div>
<div class="tech-description">High-Performance ML</div>
</div>
<div class="tech-card cuda" data-tilt>
<div class="tech-icon">🎮</div>
<div class="tech-name">CUDA</div>
<div class="tech-description">GPU Acceleration</div>
</div>
</div>
<!-- Stats Section -->
<div class="stats-section">
<div class="stat-card">
<div class="stat-number">150+</div>
<div class="stat-label">Members</div>
</div>
<div class="stat-card">
<div class="stat-number">25+</div>
<div class="stat-label">Projects</div>
</div>
<div class="stat-card">
<div class="stat-number">50+</div>
<div class="stat-label">Workshops</div>
</div>
<div class="stat-card">
<div class="stat-number">10+</div>
<div class="stat-label">Hackathons</div>
</div>
</div>
</div>
<!-- Footer -->
<div class="footer">
<p>🎓 RV College of Engineering | Bengaluru, Karnataka</p>
<p style="margin-top: 15px;">
<a href="https://github.com/TheCodingClub-RVCE" target="_blank">GitHub</a>
<a href="https://huggingface.co/TheCodingClub-RVCE" target="_blank">Hugging Face</a>
</p>
</div>
</div>
<script>
// 3D Tilt Effect on Mouse Move
const cards = document.querySelectorAll('[data-tilt]');
cards.forEach(card => {
card.addEventListener('mousemove', handleTilt);
card.addEventListener('mouseleave', resetTilt);
});
function handleTilt(e) {
const card = e.currentTarget;
const rect = card.getBoundingClientRect();
const x = e.clientX - rect.left;
const y = e.clientY - rect.top;
const centerX = rect.width / 2;
const centerY = rect.height / 2;
const rotateX = (y - centerY) / 10;
const rotateY = (centerX - x) / 10;
card.style.transform = `
perspective(1000px)
rotateX(${rotateX}deg)
rotateY(${rotateY}deg)
scale3d(1.05, 1.05, 1.05)
`;
}
function resetTilt(e) {
const card = e.currentTarget;
card.style.transform = `
perspective(1000px)
rotateX(0deg)
rotateY(0deg)
scale3d(1, 1, 1)
`;
}
// Add subtle parallax effect to header on scroll
window.addEventListener('scroll', () => {
const header = document.querySelector('.header');
const scrolled = window.pageYOffset;
header.style.transform = `translateY(${scrolled * 0.5}px)`;
header.style.opacity = 1 - (scrolled / 500);
});
// Animate stats on scroll into view
const observerOptions = {
threshold: 0.5,
rootMargin: '0px'
};
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.style.animation = 'fadeInUp 0.6s ease-out forwards';
}
});
}, observerOptions);
document.querySelectorAll('.stat-card').forEach(card => {
observer.observe(card);
});
// Add click effect to cards
cards.forEach(card => {
card.addEventListener('click', function() {
this.style.animation = 'none';
setTimeout(() => {
this.style.animation = 'float 3s ease-in-out infinite';
}, 10);
});
});
</script>
</body>
</html>