Month: May 2025

शेयर मार्केट क्या है

शेयर मार्केट एक ऐसा बाज़ार होता है जहाँ पर कई कंपनियों के शेयर (हिस्सेदारी) खरीदे और बेचे जाते हैं। जब कोई व्यक्ति किसी कंपनी का शेयर खरीदता…

मदरबोर्ड क्या है? साथ ही जानें VPN से अपनी ऑनलाइन पहचान कैसे छुपाएं!

आज के डिजिटल युग में, कंप्यूटर और इंटरनेट हमारी रोजमर्रा की जिंदगी का अभिन्न हिस्सा बन चुके हैं। जहाँ मदरबोर्ड कंप्यूटर के सभी हिस्सों को एक…

जानिए क्या है यूपीएस और इनपुट डिवाइस

आज के डिजिटल युग में, कंप्यूटर हमारी जिंदगी का एक अभिन्न हिस्सा बन गए हैं। चाहे महत्वपूर्ण डेटा स्टोर करना हो या जरूरी काम करना हो, हम हर चीज…

Mouse का आविष्कार  किसने किया और ये काम कैसे करता है

Mouse का आविष्कार Douglas एंगेलबार्ट के द्वारा  सन् 1963 में किया गया था। जब इस डिवाइस को  पहली बार एक लकड़ी के बॉक्स की तरह डिज़ाइन किया  गया…

What is Computer Graphics and pixel density

Computer Graphics से हम लोग डिजिटल आर्ट बना सकते है जिसकी मदद से हम लोग वीडियो को एडिट कर सकते है प्रोग्राम और साथ ही साथ मॉडलिंग भी की जा…

Subscribe to our Newsletter

Subscribe to our email newsletter to get the latest posts delivered right to your email.
Pure inspiration, zero spam ✨
document.addEventListener("DOMContentLoaded", function () { const emblaNode = document.querySelector(".testimonial-embla"); if (!emblaNode) return; const prevButton = document.querySelector(".testimonial-prev"); const nextButton = document.querySelector(".testimonial-next"); const progressBar = document.querySelector(".progress-line"); const embla = EmblaCarousel( emblaNode, { loop: true, align: "start", skipSnaps: false, dragFree: false } ); nextButton.addEventListener("click", function(){ embla.scrollNext(); }); prevButton.addEventListener("click", function(){ embla.scrollPrev(); }); function updateProgress(){ const totalSlides = embla.scrollSnapList().length; const currentIndex = embla.selectedScrollSnap(); const progress = ((currentIndex + 1) / totalSlides) * 100; progressBar.style.width = progress + "%"; } embla.on("select", updateProgress); embla.on("init", updateProgress); updateProgress(); document.addEventListener( "keydown", function(e){ if(e.key === "ArrowLeft"){ embla.scrollPrev(); } if(e.key === "ArrowRight"){ embla.scrollNext(); } } ); let autoplay; function startAutoplay(){ autoplay = setInterval(()=>{ embla.scrollNext(); },5000); } function stopAutoplay(){ clearInterval(autoplay); } startAutoplay(); emblaNode.addEventListener( "mouseenter", stopAutoplay ); emblaNode.addEventListener( "mouseleave", startAutoplay ); });