Hasee TX (16'', i9-13900HX, RTX4060), Gaming Laptop, i9-13900HX 5.4GHz, 16G DDR5 5600MHz RAM, 1T NVMe PCIe4.0 SSD, RTX4060 8G GDDR6, 16'' 2.5K 165Hz IPS Display, RGB KB,WF6,BT5.2,Win11,BlackHole Black

$51.63
$2,109.99
-98%
Size:  1TB SSD
Style:  13th Gen i9-13900HX & RTX 4060 & QHD+
Quantity

Description

  • 【Mutantly-evolved Intel Core 13th Gen HX Series】8 P-cores, 16 E-cores, 32 threads, i9-13900HX max turbo frequency is incredible 5.4GHz, with 16G DDR5 ram and 1TB PCIe4.0 SSD, let you experience performance like never before.
  • 【High-tech Beast Nvidia Geforce RTX 4060】3072 CUDA Cores, 3rd Gen RT Core, 4th Gen Tensor Core, applying DLSS 3, RTX, Max-Q, Reflex, with Hasee GPU Direct Communication Tech and 8G GDDR6 video memory, max frequency is 2370 MHz and has 140W full TGP, make you easily enjoy gaming, broadcast, designing, VR and AI.
  • 【16'' Marvelous Screen Born for Gaming】2.5K resolution and 165Hz refresh rate, making every second and every frame in the gaming world breathtaking.
  • 【Hasee Intelligent Cooling】Dual fans and 6 copper pipes. Pressing fn+1 to turn on strong cooling mode and the laptop's dynamic performance is at its best.
  • 【Up to 12 Months Worry-free Warranty】We offer a 30-day refund, and a 12-month warranty (except for batteries, which are guaranteed for 6 months).


SPECIFICATIONS

| CPU: Intel Core i9-13900HX, 24 Cores (8Performance-cores, 16Efficient-cores) & 32 Threads | CPU Max Turbo Frequency: 5.4 GHz | Cache: 36 MB Intel Smart Cache | Memory: 16GB DDR5 5600MHz | Memory Slot Count: 2 | Max Supported Memory: 64G (Up to 32G per slot) | Max Supported Frequency: 5600MHz | Hard Drive: 1TB PCIe4.0 NVMe M.2 SSD | Hard Drive Slot: 2 x M.2 2280 (PCIe4.0) | Graphics Card Type: Dedicated, Integrated | GPU: NVIDIA GEFORCE RTX 4060 | Graphics Memory: 8G GDDR6 | GPU TGP: 140W (Full TGP) | GPU Max Turbo Frequency: 2370MHz | CPU Graphics: Intel UHD Graphics for 13th Gen Intel Processors | Display Size: 16" | Display Type: IPS | Display Resolution: 2560 x 1600 (2.5K) | Display Aspect Ratio: 16 : 10 | Display Refresh Rate: 165Hz | Display Color Gamut: 100% sRGB | Display Peak Brightness: 500 nits | Display Bit Depth: 10 bit | Keyboard Backlit: RGB | Touch Pad Size: 5.9'' x 3.6'' | Webcam: 720P HD | Wi-Fi: Wi-Fi 6 (802.11ax) | Bluetooth:Bluetooth 5.2 | Battery Capacity: 73 Wh | AC Power Adapter Wattage: 280W | Cooling System: Hasee Intelligent Cooling Tech (2 fans, 6 copper tubes) | Operating System: Windows 11 | Dimensions: 14.1'' x 10.3'' x 1'' | Weight: 5.4 lbs | Material: Metal LCD Back Cover | Color: Black Hole Black

| Ports:

  • 1 x USB 3.2 Gen2 Type C
  • 1 x USB 3.2 Gen1 Type A
  • 1 x USB 2.0
  • 1 x Headphone / Microphone Combo
  • 1 x Microphone Jack
  • 1 x HDMI 2.1 (dGPU Mode)
  • 1 x Mini DP1.4 (dGPU Mode)
  • 1 x RJ-45 Ethernet Port
  • 1 x MicroSD Card Reader
  • 1 x DC Power Port
  • 1 x Anti-theft Lock Hole

For COMPLETE DETAILS, please download the product documentation.

For the ORIGINAL FACTORY DRIVER download link, please download the user manual.

Customer Reviews
Here are what our customers say.
Write a Review
Customer Reviews
Wow you reached the bottom
Newest
Most liked
Highest ratings
Lowest ratings
×
class SpzCustomFileUpload extends SPZ.BaseElement { constructor(element) { super(element); this.uploadCount_ = 0; this.fileList_ = []; } buildCallback() { this.action = SPZServices.actionServiceForDoc(this.element); this.registerAction('upload', (data) => { this.handleFileUpload_(data.event?.detail?.data || []); }); this.registerAction('delete', (data) => { this.handleFileDelete_(data?.args?.data); }); this.registerAction('preview', (data) => { this.handleFilePreview_(data?.args?.data); }); this.registerAction('limit', (data) => { this.handleFileLimit_(); }); this.registerAction('sizeLimit', (data) => { this.handleFileSizeLimit_(); }); } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } setData_(count, file) { this.uploadCount_ = count; this.fileList_ = file; } handleFileUpload_(data) { data.forEach(i => { if(this.fileList_.some(j => j.url === i.url)) return; this.fileList_.push(i); }) this.uploadCount_++; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileUpload", { count: this.uploadCount_, files: this.fileList_}); if(this.fileList_.length >= 5){ document.querySelector('#review_upload').style.display = 'none'; } if(this.fileList_.length > 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '8px'; } } handleFileDelete_(index) { this.fileList_.splice(index, 1); this.uploadCount_--; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileDelete", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; if(this.fileList_?.length === 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '132px'; } } handleFilePreview_(index) { const finalPreviewData = this.fileList_[index]; const filePreviewModal = document.getElementById('filePreviewModal'); const fullScreenVideo = document.getElementById('fullScreenVideo'); const fullScreenImage = document.getElementById('fullScreenImage'); const previewModalClose = document.getElementById('previewModalClose'); const previewLoading = document.getElementById('previewLoading'); filePreviewModal.style.display = 'block'; previewLoading.style.display = 'flex'; if(finalPreviewData?.type === 'video'){ const media = this.mediaParse_(this.fileList_[index]?.url); fullScreenVideo.addEventListener('canplaythrough', function() { previewLoading.style.display = 'none'; }); fullScreenImage.src = ''; fullScreenImage.style.display = 'none'; fullScreenVideo.style.display = 'block'; fullScreenVideo.src = media.mp4 || ''; } else { fullScreenImage.onload = function() { previewLoading.style.display = 'none'; }; fullScreenVideo.src = ''; fullScreenVideo.style.display = 'none'; fullScreenImage.style.display = 'block'; fullScreenImage.src = finalPreviewData.url; } previewModalClose.addEventListener('click', function() { filePreviewModal.style.display = 'none'; }); } handleFileLimit_() { alert(window.AppReviewsLocale.comment_file_limit || 'please do not upload files more than 5'); this.triggerEvent_("handleFileLimit"); } handleFileSizeLimit_() { alert(window.AppReviewsLocale.comment_file_size_limit || 'File size does not exceed 10M'); } clear(){ this.fileList_ = []; this.uploadCount_ = 0; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleClear", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; } mediaParse_(url) { var result = {}; try { url.replace(/[?&]+([^=&]+)=([^&]*)/gi, function (str, key, value) { try { result[key] = decodeURIComponent(value); } catch (e) { result[key] = value; } }); result.preview_image = url.split('?')[0]; } catch (e) {}; return result; } triggerEvent_(name, data) { const event = SPZUtils.Event.create(this.win, name, data); this.action.trigger(this.element, name, event); } } SPZ.defineElement('spz-custom-file-upload', SpzCustomFileUpload);
The review would not show in product details on storefront since it does not support to.