Skip links

IT'S MORE THAN MOBILITY

SMART FEATURES, SMARTER TRAVEL with Narain DLX advanced technolgy & superior comfort.

Elevate your daily commute with our new e-rickshaw, packed with intelligent features for a seamless journey.
Image 1
Image description 1
Image 2
Here is another description
Image 3
Image description 3

NARAIN DLX

VEHICLE SPECIFICATION


MAX SPEED <25KMPH
VEHICLE DIMENSION(LXWXH) 2760x985x1775mm
TRANSMISSION Direct Drive 1:10 G.R
RANGE/CHARGE 80-90Km
GROUND CLEARANCE 170mm
BATTERY TYPE Liquid Activated Battery 48V,130Ah
BRAKE SYSTEM Drum Type 160 mm dia
MOTOR TYPE & POWER BLDC & 1200 Watt
BATTERY CHARGING TIME 9~10 Hour
SPEEDOMETER Analog
SEATING CAPACITY D+4 Person
VEHICLE COLOR OPTION Metalic - Red/Blue/Green
SPECIFICATION

Narain DLX BEST IN CLASS FEATURES

Unique Features of Lohia Auto

Best-in-Class Mileage

Experience the unmatchable power and efficiency. Trusted by millions of people.

Advanced Technology

New cutting-edge technologies and innovations to create last-mile connectivity

Advanced 130AH Battery

Ride your E-Rickshaw for longer hours, with enhanced battery power.

Contact us

Address

3rd Floor, Centrum Plaza Mall,
Khasra No: 369-70, Opposite Metro Pillar
No.16-B, Mehrauli-Gurgaon Road, Sultanpur,
New Delhi - 110030

Contact

Toll Free: 1800 120 5933
[email protected]

Address

Plot. no. 22, 23 & 27,
Nand Nagar Industrial Estate,
Mahua Khera Ganj, Kashipur- 244713,
Udham Singh Nagar, Uttrakhand, India

Contact

05947-226208
[email protected]

Request a Call

Great things in business are never done one. They’re done by a team of people.


const carousel = document.querySelector('.carouselg'); const slides = carouselg.querySelectorAll('.slideg'); const dotsContainer = carousel.querySelector('.dots'); const timer = carousel.querySelector('.timer'); const prevButton = carousel.querySelector('.prev'); const nextButton = carousel.querySelector('.next'); const pausePlayButton = carousel.querySelector('.pause-play-button'); const pausePlayIcon = pausePlayButton.querySelector('svg'); const pausePlayLabel = pausePlayButton.querySelector('span'); let currentSlide = 0; const slideInterval = 4000; // 4 seconds let slideTimer; let isPaused = false; // Create dots slides.forEach((_, index) => { const dot = document.createElement('div'); dot.classList.add('dot'); if (index === 0) dot.classList.add('active'); dot.addEventListener('click', () => goToSlide(index)); dotsContainer.appendChild(dot); }); function goToSlide(n) { slides[currentSlide].classList.remove('active'); dotsContainer.children[currentSlide].classList.remove('active'); currentSlide = (n + slides.length) % slides.length; slides[currentSlide].classList.add('active'); dotsContainer.children[currentSlide].classList.add('active'); resetTimer(); } function nextSlide() { goToSlide(currentSlide + 1); } function prevSlide() { goToSlide(currentSlide - 1); } // Timer animation function resetTimer() { if (isPaused) return; clearTimeout(slideTimer); timer.style.transition = 'none'; timer.style.width = '0%'; setTimeout(() => { timer.style.transition = 'width 4s linear'; timer.style.width = '100%'; }, 10); slideTimer = setTimeout(nextSlide, slideInterval); } // Pause functionality function togglePause() { isPaused = !isPaused; if (isPaused) { pausePlayIcon.innerHTML = ''; pausePlayLabel.textContent = 'Play'; pausePlayButton.setAttribute('aria-label', 'Play carousel'); clearTimeout(slideTimer); timer.style.transition = 'none'; } else { pausePlayIcon.innerHTML = ''; pausePlayLabel.textContent = 'Pause'; pausePlayButton.setAttribute('aria-label', 'Pause carousel'); resetTimer(); } } // Focal point adjustment function adjustFocalPoint() { slides.forEach(slide => { const img = slide.querySelector('img'); const focalX = img.dataset.focalX / 100; const focalY = img.dataset.focalY / 100; const containerAspect = carousel.offsetWidth / carousel.offsetHeight; const imageAspect = img.naturalWidth / img.naturalHeight; let scale, translateX, translateY; if (containerAspect > imageAspect) { // Container is wider than the image scale = carousel.offsetWidth / img.naturalWidth; translateX = 0; translateY = (carousel.offsetHeight - img.naturalHeight * scale) * focalY; } else { // Container is taller than the image scale = carousel.offsetHeight / img.naturalHeight; translateX = (carousel.offsetWidth - img.naturalWidth * scale) * focalX; translateY = 0; } img.style.transform = `translate(${translateX}px, ${translateY}px) scale(${scale})`; }); } // Event listeners prevButton.addEventListener('click', (e) => { e.preventDefault(); prevSlide(); }); nextButton.addEventListener('click', (e) => { e.preventDefault(); nextSlide(); }); pausePlayButton.addEventListener('click', togglePause); window.addEventListener('resize', adjustFocalPoint); // Swipe functionality let touchStartX = 0; let touchEndX = 0; carousel.addEventListener('touchstart', (e) => { touchStartX = e.changedTouches[0].screenX; }, false); carousel.addEventListener('touchend', (e) => { touchEndX = e.changedTouches[0].screenX; handleSwipe(); }, false); function handleSwipe() { if (touchEndX < touchStartX) { nextSlide(); } if (touchEndX > touchStartX) { prevSlide(); } } // Initialize adjustFocalPoint(); resetTimer();