Menu
Your Cart

Fantech HELIOS XD3 Pro Wireless Gaming Mouse

Fantech HELIOS XD3 Pro Wireless Gaming Mouse
Fantech HELIOS XD3 Pro Wireless Gaming Mouse
  • Price: TK 5,250/-
  • Stock: In Stock
  • Model: HELIOS XD3 Pro
TK 5,250/-
Ex Tax: TK 5,250/-

Key Features

    • Model: HELIOS XD3 Pro
    • PixArt 3360 Gaming Sensor, Dual Modes
    • Huano 50 Million Clicks Lifetime
    • Six Programmable Buttons
    • Up to 250IPS/ 50G Acceleration
    Specification
    General Feature
    Tracking Methodup to 400IPS and 40G mouse acceleration
    BrandFantech
    ModelHELIOS XD3 Pro
    Connection TypeWireless
    Gaming Features
    ButtonSix Independently Programmable Buttons
    Switch Lifecycle50 Million Clicks
    AccelerationUp to 250 IPS / 50G Acceleration
    Mouse Feature
    Resolution100-12,000 DPI
    Polling Rate1000Hz
    Optical SensorPixArt 3360 Gaming Sensor
    Physical Attributes
    ColorBlack
    Dimensions125mm x 64mm x 39mm
    Weight74gr w/o cable
    Warranty Information
    Warranty01 Year
    Description

    Fantech HELIOS XD3 Pro Wireless Gaming Mouse

    The Fantech HELIOS XD3 Pro Wireless Gaming Mouse is a high-performance mouse designed for gamers who demand precision and speed. Equipped with the PixArt 3360 Gaming Sensor, this mouse offers exceptional accuracy and smooth tracking, making it ideal for both casual and competitive gaming. With dual-mode connectivity, you can switch between 2.4GHz wireless and wired mode, providing the flexibility to choose the optimal connection for your gaming style.

    The Fantech HELIOS XD3 Pro is built to last with Huano 50 Million Clicks Lifetime switches, ensuring durability and consistent performance over time. The mouse features six programmable buttons, which allow gamers to assign custom commands for quick access to in-game actions and macros, giving you a competitive edge.

    With up to 250IPS tracking speed and 50G acceleration, the HELIOS XD3 Pro delivers rapid response times and excellent accuracy, ensuring that every movement is captured with pinpoint precision. Whether you're playing fast-paced FPS games or strategizing in RTS games, this mouse provides the speed and control needed to outperform the competition.

    Buying Suggestion from Dear IT Solution

    Get the Fantech HELIOS XD3 Pro Wireless Gaming Mouse at the best price in Bangladesh from Dear IT Solution. We offer the best quality product insured in Bangladesh, ensuring you receive a high-performance, durable mouse for your gaming needs.

    Order now from Dear IT Solution to enjoy fast delivery, reliable customer service, and top-quality gaming accessories. Level up your gaming experience with the Fantech HELIOS XD3 Pro today

    Review

    Write a review

    Note: HTML is not translated!
    Bad Good
    Critial Path: Hello world!
    Hello world!
    /** * @license * Copyright 2017 Google LLC * SPDX-License-Identifier: Apache-2.0 *//** * @fileoverview Diagnostic audit that lists all JavaScript libraries detected on the page */import {Audit} from '../audit.js'; import * as i18n from '../../lib/i18n/i18n.js';const UIStrings = { /** Title of a Lighthouse audit that provides detail on the Javascript libraries that are used on the page. */ title: 'Detected JavaScript libraries', /** Description of a Lighthouse audit that tells the user what this audit is detecting. This is displayed after a user expands the section to see more. No character length limits. */ description: 'All front-end JavaScript libraries detected on the page. [Learn more about this JavaScript library detection diagnostic audit](https://developer.chrome.com/docs/lighthouse/best-practices/js-libraries/).', /** Label for a column in a data table; entries will be the version numbers of the detected Javascript libraries. */ columnVersion: 'Version', };const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);class JsLibrariesAudit extends Audit { /** * @return {LH.Audit.Meta} */ static get meta() { return { id: 'js-libraries', title: str_(UIStrings.title), scoreDisplayMode: Audit.SCORING_MODES.INFORMATIVE, description: str_(UIStrings.description), requiredArtifacts: ['Stacks'], }; }/** * @param {LH.Artifacts} artifacts * @return {LH.Audit.Product} */ static audit(artifacts) { const libDetails = artifacts.Stacks .filter(stack => stack.detector === 'js') // Don't show the fast paths in the table. .filter(stack => !stack.id.endsWith('-fast')) .map(stack => ({ name: stack.name, version: stack.version, npm: stack.npm, }));/** @type {LH.Audit.Details.Table['headings']} */ const headings = [ {key: 'name', valueType: 'text', label: str_(i18n.UIStrings.columnName)}, {key: 'version', valueType: 'text', label: str_(UIStrings.columnVersion)}, ]; const details = Audit.makeTableDetails(headings, libDetails);const debugData = { type: /** @type {const} */ ('debugdata'), stacks: artifacts.Stacks.map(stack => { return { id: stack.id, version: stack.version, }; }), };if (!libDetails.length) { return {score: null, notApplicable: true}; }return { score: 1, // Always pass for now. details: { ...details, debugData, }, }; } }export default JsLibrariesAudit; export {UIStrings};