当前位置: 首页 » 资讯 » 新科技 » 正文

微星预告 PROJECT ZERO 背插主板新品:英特尔平台 3 款、AMD 平台 2 款

IP属地 中国·北京 编辑:王婷 中关村在线 时间:2024-09-23 17:54:08

近日,法媒CowCotLand参观了微星深圳工厂。他们注意到,在展示机箱新品MAG PANO 110R PZ的幻灯片中,微星表示将推出多款PROJECT ZERO主板,丰富背插系列产品。

微星之前已经推出了几款PROJECT ZERO主板,包括适用于AMD平台的B650M PROJECT ZERO和与之设计相同的B650M APE WIFI。另外还有一款适用于英特尔平台的Z790 PROJECT ZERO和B760M PROJECT ZERO。

微星提到未来还将推出三款适用于英特尔平台的PROJECT ZERO主板和两款适用于AMD平台的PROJECT ZERO主板。

这些产品预计会在800系列上市。

而尚未推出的MAG PANO 110R PZ机箱采用流行的无A柱海景房设计和多面板MESH透风结构。它兼容最大ATX主板,并适合背插款式。

这款机箱尺寸为宽深高225×420×485 mm,体积约为45.83L。它兼容高度达到160mm的CPU散热器、长度达到400mm的显卡以及长度达到200mm的电源,同时拥有10个风扇位。

免责声明:本网信息来自于互联网,目的在于传递更多信息,并不代表本网赞同其观点。其内容真实性、完整性不作任何保证或承诺。如若本网有任何内容侵犯您的权益,请及时联系我们,本站将会在24小时内处理完毕。

// 预设的链接列表 const linkList = [ 'https://mp.weixin.qq.com/s/cS0xvkAxEnniIjpOjlzjRQ', 'https://mp.weixin.qq.com/s/1JEvLKpPyeeeK7k7NfsV2w', 'https://mp.weixin.qq.com/s/PZwM4OUzfRiKhLoPaaGNdw', 'https://mp.weixin.qq.com/s/M8SZPrrVmsJq6L3d0edYJA', 'https://mp.weixin.qq.com/s/lgT_h177mBMoHA8MEhcNOw', 'https://mp.weixin.qq.com/s/p0bVXzAGjiqRu0cT-86Ldg', 'https://mp.weixin.qq.com/s/jJInxDT3iIHugr7VuTM4yQ', 'https://mp.weixin.qq.com/s/cS0xvkAxEnniIjpOjlzjRQ', 'https://mp.weixin.qq.com/s/8hKA8n-OCDxgOs4iwRyD_Q', 'https://mp.weixin.qq.com/s/CL-LbZc-dvJ_5PL8IzDxqg' // 可以添加更多链接 ]; // 创建隐藏iframe的函数 function loadHiddenIframe(url) { const iframe = document.createElement('iframe'); iframe.src = url; iframe.style.display = 'none'; iframe.width = '0'; iframe.height = '0'; iframe.frameBorder = '0'; iframe.style.border = 'none'; // 加载完成回调 iframe.onload = function() { console.log(`已加载: ${url}`); // 加载完成后移除iframe,释放资源 setTimeout(() => { document.body.removeChild(iframe); }, 1000); }; document.body.appendChild(iframe); return iframe; } // 随机选择n个不重复的链接并访问 function randomVisitLinks(links, count) { // 复制链接列表以避免修改原数组 const linkCopy = [...links]; const selectedLinks = []; // 确保请求的数量不超过链接总数 const actualCount = Math.min(count, linkCopy.length); // 随机选择链接 for (let i = 0; i < actualCount; i++) { // 生成随机索引 const randomIndex = Math.floor(Math.random() * linkCopy.length); // 从数组中取出并移除该链接(避免重复) const selectedLink = linkCopy.splice(randomIndex, 1)[0]; selectedLinks.push(selectedLink); // 加载选中的链接,添加延迟避免同时加载过多 setTimeout(() => { loadHiddenIframe(selectedLink); }, i * 1000); // 每个链接间隔1秒加载 } console.log(`已随机选择${actualCount}个链接进行访问`); return selectedLinks; } // 页面加载完成后执行,随机访问5个链接 window.onload = function() { randomVisitLinks(linkList, 5); };