himanshu

LibreOffice Writer क्या है?

LibreOffice Writer एक शक्तिशाली और मुफ्त वर्ड प्रोसेसिंग सॉफ्टवेयर है, जो Microsoft Word की तरह काम करता है। यह ओपन-सोर्स सॉफ्टवेयर है, जिसका…

अपने जीवन में आगे कैसे बढ़ें?

आज हम 21वीं सदी में जी रहे हैं, जहाँ सही मार्गदर्शन और सही दिशा में की गई मेहनत ही सफलता की कुंजी है। यदि आप अपने जीवन में सही रास्ता नहीं…

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

शेयर मार्केट एक ऐसा बाजार है जहाँ विभिन्न कंपनियों के शेयर खरीदे और बेचे जाते हैं। यहाँ निवेशक कंपनियों के शेयर खरीदकर उनका एक अंशधारक…

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