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

Antec ORBIT PWM 120mm ARGB Fan 3 Pack - Black

SKU: ORBIT 120 3PK
R 879.00 R 999.00
You save R 120.00 (12%)
In Stock
You save R 120.00 (12% off)

Transform your PC build into a futuristic masterpiece with the Antec Orbit 120mm ARGB Fan 3 Pack, designed to deliver stunning aesthetics and powerful cooling performance. Featuring an infinity mirror light effect at the centre of each fan and a dual-ring ARGB lighting system, the Orbit fans create...

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

Frequently Bought Together

Transform your PC build into a futuristic masterpiece with the Antec Orbit 120mm ARGB Fan 3 Pack, designed to deliver stunning aesthetics and powerful cooling performance. Featuring an infinity mirror light effect at the centre of each fan and a dual-ring ARGB lighting system, the Orbit fans create a mesmerising wormhole-like visual that elevates your gaming setup. The curved surface front and rear covers, along with the carbon fibre-inspired diagonal pattern, offer a modern, cohesive look that complements any high-end rig.

Equipped with intelligent chip-based PWM fan control, the Antec Orbit fans dynamically adjust speed based on system demands, ramping up airflow during heavy workloads and achieving near-total silence during low-load or idle states. When the PWM duty cycle falls below 6%, the fans automatically stop, allowing for ultra-silent standby operation. This smart fan management ensures optimal performance without compromising on acoustics, making it ideal for noise-sensitive environments.

With a thicker 28mm frame, the Orbit fans increase the air inlet area and improve contact with the chassis, delivering superior cooling performance. The 9-blade design enhances static pressure and airflow efficiency, ensuring your components stay cooler even under demanding conditions. Built with fluid dynamic bearings (FDB), these fans offer extended lifespan, smoother operation, and reduced vibration—ideal for long-term reliability in high-performance builds.

To further enhance quiet operation, each fan is fitted with eight rubber anti-vibration pads that absorb operational vibrations and reduce noise output to as low as 18 dB(A). With a lifespan rated at 50,000 hours at 40°C, the Orbit fans are built to last. The package includes standard 4-pin fan connectors and 3-pin ARGB LED connectors, ensuring compatibility with most modern motherboards and lighting control software. Whether you're upgrading your cooling or completing a themed build, the Antec Orbit fans offer a perfect blend of style, silence, and performance.

FEATURES:

  • Fluid dynamic bearing for longer life and reduced noise
  • Exquisite carbon fiber style design
  • Intelligent PWM fan control
  • Four-sided lighting effect
  • 9-blade fan design
  • Infinity mirror light effect
  • Dual ring design
  • Vibration-absorbing and anti-noise pads

SPECIFICATIONS:

  • Fan Type: ARGB Fan
  • Bearing Type: FDB
  • Fan Speed: 200-2000 ±10% RPM
  • Airflow: 0.48-66.72±5% CFM
  • Air Pressure: 0.02-2.06±5% mm H₂O
  • Fan Noise Level: 18-31±5% dB(A)
  • Lifespan: 50,000 hours / 40℃
  • Connector: FAN: 4-pin | LED: 3-pin
  • Rated Voltage: FAN: DC 12 V | LED: DC 5 V
  • Operation Voltage: FAN: DC 6.0-13.2 V | LED: DC 3.7-5.5 V
  • Rated Current: FAN: 0.35 A  | LED: 1 A
  • Product Dimensions: 12 x 12 x 2.8 cm

WHAT'S IN THE BOX:

  • Antec Orbit 120mm ARGB Fan - Black x3
Brand Antec
Colour Black
Form Factor -
Interface -
Capacity -
Memory Capacity -
Screen Size -
Resolution -
Refresh Rate -
Cpu -
Cpu Socket -
Warranty 36 Months
0.0
0 reviews
Login to Review

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

Related Products

-8%
FSP ZENFAN 120mm ARGB PWM Smart Fan - Black
FSP

FSP ZENFAN 120mm ARGB PWM Smart Fan - Black

R 229.00 R 249.00

Save R 20.00

In Stock

-11%
PCBuilder TORNADO CHILL ARGB 120mm Fan Kit
PCBuilder

PCBuilder TORNADO CHILL ARGB 120mm Fan Kit

R 309.00 R 349.00

Save R 40.00

In Stock

-7%
PCBuilder Tempest Chill Fan Kit 3x120MM Dual Glow ARGB Fan + Controller + RF Remote
PCBuilder

PCBuilder Tempest Chill Fan Kit 3x120MM Dual Glow ARGB Fan + Controller + RF Remote

R 519.00 R 559.00

Save R 40.00

In Stock

-13%
PCBuilder TORNADO CHILL 120mm ARGB Fan - Black
PCBuilder

PCBuilder TORNADO CHILL 120mm ARGB Fan - Black

R 69.00 R 79.00

Save R 10.00

In 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!