Menu
Your Cart

Fantech X17 Pro Blake Macro RGB Gaming Mouse

Fantech X17 Pro Blake Macro RGB Gaming Mouse
Fantech X17 Pro Blake Macro RGB Gaming Mouse
  • Price: TK 2,730/-
  • Stock: In Stock
  • Model: X17 Pro
TK 2,730/-
Ex Tax: TK 2,730/-

Key Features

    • Model: X17 Pro
    • Connection Type: wired
    • Tracking Method: Optical
    • Number of Keys: 7 Programmable Button & Controls
    • Switch Lifecycle: 20.000.000 Click Lifetime
    Specification
    General Feature
    Mechanical SwitchesYes
    Tracking Methodoptical sensor
    BrandFantech
    ModelX17 Pro
    Connection Typewired
    Gaming Features
    Button7
    Switch Lifecycle20.000.000 Click Lifetime
    Mouse Feature
    ResolutionDPI 10,000
    Number of Keys7 Programmable Button & Controls
    Optical SensorDPI 10,000
    Physical Attributes
    ColorBlack
    Warranty Information
    Warranty01 Year
    Description

    Fantech X17 Pro Blake Macro RGB Gaming Mouse

    The Fantech X17 Pro Blake Macro RGB Gaming Mouse is designed for professional gamers seeking precision, durability, and customization. With its wired connection, this gaming mouse ensures zero-latency performance, making it perfect for competitive gaming.

    Equipped with 7 programmable buttons, the X17 Pro enhances gameplay efficiency, allowing users to assign custom commands and macros for quick in-game execution. The high-precision optical tracking method delivers smooth and accurate cursor movement, ensuring flawless control in any gaming scenario.

    Built to withstand intense gaming sessions, the X17 Pro features a 20 million click switch lifecycle, offering long-lasting durability. Its RGB lighting system adds a visually dynamic touch, allowing gamers to personalize their setup with stunning color effects.

    Buying Suggestion from Dear IT Solution

    Get the Fantech X17 Pro Blake Macro RGB Gaming Mouse at the best price in Bangladesh from Dear IT Solution. We ensure the best quality product insured in Bangladesh, providing gamers with high-performance accessories for an unparalleled gaming experience.

    Order now from Dear IT Solution for fast delivery, reliable customer support, and top-tier gaming gear. Elevate your gaming performance with the X17 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};