Trends

Trends

Stay updated on the latest trends across various industries, from fashion to technology, and learn how these shifts are shaping the future.

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

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

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

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

Gateway क्या है?

गेटवे (Gateway) क्या होता है? क्या आप Gateway के बारे में जानते हैं? अगर नहीं, तो कोई बात नहीं! आज हम आपको Gateway के बारे में पूरी जानकारी…

What is mouse

माउस एक प्रकार का हार्डवेयर और इनपुट डिवाइस है। जिसकी मदद से  हम अपने  कंप्यूटर को  निर्देश देते है। हम लोगो को  जो अपने…

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 ); });