Antec P12 ARGB 120 PWM Case Fan 3 Pack - Black - Antec | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
Antec

Antec P12 ARGB 120 PWM Case Fan 3 Pack - Black

SKU: P12 ARGB BLK
R 389.00
In Stock

The Antec P12 ARGB 120 PWM Case Fan combines innovative design, powerful performance, and vibrant aesthetics to elevate your PC’s cooling and style. Featuring a 9-fan blade design, it delivers smoother air intake while presenting a cleaner, more streamlined appearance. With its 9-blade structure,...

Free shipping over R 3 450.00
Secure checkout
14-day returns
Expert support

Frequently Bought Together

The Antec P12 ARGB 120 PWM Case Fan combines innovative design, powerful performance, and vibrant aesthetics to elevate your PC’s cooling and style. Featuring a 9-fan blade design, it delivers smoother air intake while presenting a cleaner, more streamlined appearance. With its 9-blade structure, the fan ensures efficient ventilation and robust airflow, even under high air resistance, maintaining superior cooling performance for demanding gaming and workloads.

Dynamic ARGB lighting adds a stunning visual dimension, offering a full spectrum of customizable colours to match any gamer’s setup. The vibrant illumination brings your build to life, making it a standout centrepiece for any rig. This fan also supports precise PWM control, allowing users to fine-tune their ideal balance of low noise and high performance, with a speed range from 600 to 1500 RPM.

Engineered for quiet operation and durability, the P12 features hydraulic bearings and eight anti-vibration rubber pads, which reduce noise and minimize vibrations during operation. With a noise level as low as 18.8 dB(A) and a maximum of just 26.5 dB(A), this fan delivers efficient cooling without compromising your system’s acoustic profile. Its long lifespan of up to 40,000 hours at 25°C ensures reliable and consistent performance over time.

Designed with both performance and convenience in mind, the Antec P12 ARGB 120 PWM Fan is equipped with a 4-pin PWM connector for fan control and a 3-pin connector for ARGB lighting synchronization. Whether you’re optimizing cooling for intense gaming sessions or enhancing your build’s aesthetic appeal, this fan provides an exceptional combination of functionality, style, and quiet efficiency.

FEATURES:

  • PWM fan design
  • 9-blade for superior heat dissipation
  • Dynamic ARGB lighting
  • Hydraulic bearing fan for long-lasting performance
  • 8 x Vibration-absorbing & anti-noise pads for quiet operation

SPECIFICATIONS:

  • Fan Type: ARGB PWM Fan
  • Bearing Type: Hydraulic Bearing
  • Fan Speed: 600±100~1500±150 RPM
  • Airflow: 9.33~60.63 CFM (max.)
  • Air Pressure: 0.09~1.33 mm H₂O (max.)
  • Fan Noise Level: 18.8~26.5 dB(A)
  • Lifespan: 30,000 hours / 40℃ | 40,000 hours / 25℃
  • Connector: FAN: 4-pin | LED: 3-pin
  • Rated Voltage: FAN: DC 12 V | LED: DC 5 V
  • Operation Voltage: FAN: DC 7.0-13.8 V
  • Rated Current: FAN: 0.15 A (0.22A (max.)) | LED: 0.3 A
  • Colour: Black
  • Product Dimensions: 12 x 12 x 2.5 cm

WHAT’S IN THE BOX:

  • Antec P12 ARGB 120 PWM Case Fan – Black x3
Brand Antec
Colour Black
Form Factor -
Interface -
Capacity -
Memory Capacity -
Screen Size -
Resolution -
Refresh Rate -
Cpu -
Cpu Socket -
Warranty 12 Months
0.0
0 reviews
Login to Review

No reviews yet. Be the first to review this product!

Related Products

PCBuilder TORNADO CHILL 120mm ARGB Fan - Black
PCBuilder

PCBuilder TORNADO CHILL 120mm ARGB Fan - Black

R 79.00

In Stock

PCBuilder Tempest Chill 120MM ARGB Inner Glow Fan
PCBuilder

PCBuilder Tempest Chill 120MM ARGB Inner Glow Fan

R 99.00

Out of Stock

DeepCool FL12R SE 3-in-1 ARGB 120mm PWM 3 Fan Pack - Black
DEEPCOOL

DeepCool FL12R SE 3-in-1 ARGB 120mm PWM 3 Fan Pack - Black

R 469.00

Only 3 left - order soon!

PCBuilder Tempest Chill 120MM ARGB Dual Glow Fan
PCBuilder

PCBuilder Tempest Chill 120MM ARGB Dual Glow Fan

R 129.00

Out of Stock

// Share product with fallback // 2026-05-22: rewritten. Old version had three bugs: // 1) Copy Link button used `this.textContent='Copied!'` which destroyed the // icon (textContent replaces everything). After clicking, the link icon // disappeared. // 2) Inline onclick handlers had nested \x27-escaped strings interpolating // `url` directly — if the URL contained a single quote the JS broke. // 3) Close button used `this.closest('div[style]').parentElement.remove()` // — fragile, depends on no inline style elsewhere in the DOM tree. // New version: build with DOM nodes, attach proper event listeners, keep the // icon, gracefully handle clipboard failure, use a held reference to close. function shareProduct() { var title = document.querySelector('.product-title').textContent; var url = window.location.href; if (navigator.share) { navigator.share({ title: title, url: url }).catch(function() {}); return; } // Fallback: show share options modal var modal = document.createElement('div'); modal.style.cssText = 'position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,0.6);z-index:9999;display:flex;align-items:center;justify-content:center;padding:1rem;'; var encoded = encodeURIComponent(url); var encodedTitle = encodeURIComponent(title); var content = document.createElement('div'); content.style.cssText = 'background:#fff;border-radius:12px;padding:24px;max-width:360px;width:100%;text-align:center;'; content.innerHTML = '

Share this product

' + '
' + ' Facebook' + ' WhatsApp' + ' Email' + '
' + '' + '
'; modal.appendChild(content); function closeModal() { if (modal.parentNode) modal.parentNode.removeChild(modal); } modal.addEventListener('click', function(e) { if (e.target === modal) closeModal(); }); content.querySelector('[data-action="close-modal"]').addEventListener('click', closeModal); var copyBtn = content.querySelector('[data-action="copy-link"]'); var copyLabel = copyBtn.querySelector('.btn-label'); copyBtn.addEventListener('click', function() { function flashLabel(text) { var prev = copyLabel.textContent; copyLabel.textContent = text; setTimeout(function() { copyLabel.textContent = prev; }, 1800); } if (navigator.clipboard && navigator.clipboard.writeText) { navigator.clipboard.writeText(url) .then(function() { flashLabel('Copied!'); }) .catch(function() { flashLabel('Press Ctrl+C'); }); } else { // Legacy browser fallback — execCommand still works on http: contexts var ta = document.createElement('textarea'); ta.value = url; ta.style.position = 'fixed'; ta.style.opacity = '0'; document.body.appendChild(ta); ta.select(); try { document.execCommand('copy'); flashLabel('Copied!'); } catch (e) { flashLabel('Press Ctrl+C'); } document.body.removeChild(ta); } }); document.body.appendChild(modal); }
Chat with us!