UIET.social is currently under maintenance. We're working hard to bring you something amazing!
This website is developed and maintained by UIET students as an independent initiative to serve our university community. We are passionate students working together to create valuable resources and connections for our fellow UIETians.
Important Notice: This is not an official website of the University Institute of Engineering and Technology (UIET). All content and services provided here are student-driven initiatives aimed at enhancing the student experience.
Our mission is to bridge the gap between students and provide a platform for collaboration, // Animate elements with staggered fade-in const fadeElements = document.querySelectorAll('.fade-in'); let index = 0; for (const element of fadeElements) { element.style.animationDelay = `${index * 0.2}s`; index++; }
Help us build amazing features with web development, mobile apps, backend systems, and more.
Create beautiful interfaces and user experiences that make our platform intuitive and engaging.
Help us reach more students through social media, content creation, and community outreach.
Write articles, create tutorials, and produce content that helps fellow students succeed.
Organize teams, manage timelines, and ensure our projects run smoothly and efficiently.
Share your creative ideas and innovative solutions to improve student life at UIET.
We appreciate every form of contribution, no matter how big or small. Join our growing community of student contributors and help us build something amazing together!
What we need from you:
• Your contact information
• Brief description of your skills and interests
• What specific area you'd like to contribute to
• Any previous experience or portfolio (optional)
Stay connected with UIET.social through multiple channels
Get in touch with our team
// Parallax effect for floating elements document.addEventListener('mousemove', function(e) { const mouseX = (e.clientX / window.innerWidth) * 100; const mouseY = (e.clientY / window.innerHeight) * 100; const dynamicElements = document.querySelectorAll('.dynamic-element'); for (const element of dynamicElements) { const speed = 0.05; const x = (mouseX - 50) * speed; const y = (mouseY - 50) * speed; element.style.transform = `translate(${x}px, ${y}px)`; } }); UIET Social Group // Add random animations to contribution cards const contributionCards = document.querySelectorAll('.contribution-card'); let contributionIndex = 0; for (const card of contributionCards) { // Stagger the initial animation card.style.animationDelay = `${contributionIndex * 0.1}s`; // Add random hover delay card.addEventListener('mouseenter', function() { setTimeout(() => { this.style.transform = 'translateY(-5px) scale(1.02) rotate(1deg)'; }, Math.random() * 100); }); card.addEventListener('mouseleave', function() { this.style.transform = 'translateY(0) scale(1) rotate(0deg)'; }); contributionIndex++; // Intersection Observer for scroll animations const scrollObserver = new IntersectionObserver((entries) => { for (const entry of entries) { if (entry.isIntersecting) { entry.target.style.animation = 'slideInLeft 0.8s ease forwards'; scrollObserver.unobserve(entry.target); } } }, { threshold: 0.1 }); // Observe sections for scroll animations for (const section of document.querySelectorAll('.info-section, .contribution-section, .cta-section, .about-content')) { scrollObserver.observe(section); }We are a passionate group of UIET students working together to create something meaningful for our community. Our diverse team brings together skills in development, design, marketing, and project management.
Thank you for your patience and support! �
© 2025 UIET Social Community. All rights reserved.
Developed with ❤️ by UIET Students