Menu
Your Cart

FANTECH GAMING MOUSEPAD MP-64XL

FANTECH GAMING MOUSEPAD MP-64XL
-21 %
FANTECH GAMING MOUSEPAD MP-64XL
  • Price: TK 380/-
  • special price: TK 300/-
  • Stock: In Stock
  • Model: mp-64xl
TK 300/-
TK 380/-
Ex Tax: TK 300/-

Key Features

    • Size: 640 × 210 × 2 mm
    • Design: Full‑desk XL layout suitable for keyboard+mouse
    • Color: Classic Black
Specification
Mouse Pad
ColorClassic Black
Dimension640 × 210 × 2 mm (25.2 × 8.3 × 0.08 in)
General Feature
BrandFantech
ModelMP-64XL
Description

Maximize Control & Coverage: FANTECH MP‑64XL “Basic XL” Gaming Mousepad (640×210mm)

Experience an uncompromised gaming and productivity setup with the FANTECH MP‑64XL “Basic XL” Gaming Mousepad—an extended-size mousepad designed for seamless performance, comfort, and full-desk integration. Whether you're a competitive gamer, digital designer, or multitasking professional, this XL-sized pad ensures that every movement is accurate, fluid, and unhindered.

With dimensions of 640 × 210mm, the MP‑64XL offers an "Extender" format that comfortably accommodates both your keyboard and mouse, creating a uniform and stable work surface. This extended coverage not only enhances your desktop aesthetics but also reduces the need for constant repositioning, keeping your focus uninterrupted during critical moments.

The surface is built with a high-speed fabric texture, specially engineered for low-friction, high-precision gliding, making it ideal for fast mouse movements in FPS games or detailed design work. Whether you're using an optical or laser mouse, the speed-optimized cloth top delivers exceptional tracking responsiveness across the entire pad.


Why Choose FANTECH MP-64XL from Dear IT Solution?

At Dear IT Solution, we are proud to offer the FANTECH MP‑64XL “Basic XL” Mousepad at the best price in Bangladesh. Though this product does not include a warranty, every item is authentic, carefully inspected, and securely packaged for your satisfaction. Our fast delivery service ensures you receive your product promptly, ready to enhance your setup from day one.

Whether you're aiming to build a professional workspace, optimize your gaming rig, or streamline your desktop environment, the MP-64XL offers the ideal combination of form, function, and comfort.

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