Menu
Your Cart

A4TECH Bloody B135N Gaming Keyboard

A4TECH Bloody B135N Gaming Keyboard
A4TECH Bloody B135N Gaming Keyboard
-10 %
A4TECH Bloody B135N Gaming Keyboard
A4TECH Bloody B135N Gaming Keyboard
A4TECH Bloody B135N Gaming Keyboard
  • Price: TK 1,870/-
  • special price: TK 1,680/-
  • Stock: In Stock
  • Model: B135N
  • Dimensions: 450.00mm x 54.00mm x 38.00mm
TK 1,680/-
TK 1,870/-
Ex Tax: TK 1,680/-

Key Features

    • Brand:A4Tech
    • Model: B135N
    • Type:Wired USB Keyboard
    • Warranty:1 Year
Specification
General Feature
BrandA4Tech
ModelB135N
TypeWired Gaming Keyboard
InterfaceUSB
Others1ms ultra-fast response
Physical Attributes
ColorBlack
Dimensions450mm X 54mm X 38mm
Backlit OptionYes
Warranty Information
Warranty1 Year
Description

Buy A4TECH Bloody B135N Backlight Keyboard Bangladesh


The A4TECH Bloody B135N Neon Backlight Gaming Keyboard is designed for gamers seeking both performance and aesthetics. This keyboard features vibrant neon backlighting that enhances your gaming setup, providing a visually striking experience. Whether you’re playing in a dimly lit room or just want to add flair to your workspace, the backlighting adds a dynamic element that elevates your gaming environment.

Equipped with anti-ghosting technology, the B135N ensures that every keystroke registers accurately, even when multiple keys are pressed simultaneously. This is particularly essential during intense gaming sessions where precision is key. The keyboard is built with high-quality mechanical switches, providing tactile feedback and a satisfying typing experience. Additionally, the customizable backlighting allows you to set your preferred color scheme, making it a perfect match for your gaming style.

Features of A4TECH Bloody B135N Neon Backlight Gaming Keyboard

Neon Backlighting: Dynamic lighting effects that enhance your gaming setup and provide a stylish look.
Anti-Ghosting Technology: Ensures that multiple key presses are registered correctly, allowing for fluid gameplay.
Mechanical Switches: High-quality switches provide excellent tactile feedback for a responsive typing experience.
Customizable Lighting: Set your preferred color schemes and effects to match your gaming aesthetic.
Durable Design: Built to withstand intense gaming sessions with long-lasting materials.
Multimedia Shortcuts: Convenient keys for quick access to media controls, enhancing your overall gaming experience.


Why Buy A4TECH Bloody B135N from Dear IT Solution

Choose the A4TECH Bloody B135N Neon Backlight Gaming Keyboard from Dear IT Solution to get the best price in Bangladesh. We ensure that all our products are original and offer the best quality product insured in Bangladesh. Whether you're shopping online or visiting our store, you can trust that you’re getting a high-performance gaming keyboard that enhances your gameplay.


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