三星折叠屏旗舰开售:15999元考虑下?

Antutu

阅读

11月8日消息,三星官方宣布,旗下首款折叠屏旗舰Galaxy Fold国行版今天正式开卖,售价15999元,提供量子黑、夜雾银两种配色。

该机早在今年2月份就已经发布,当时出现了屏幕折叠的问题,官方称现已得到解决。

回顾一下Galaxy Fold,该机正面是一块4.6英寸的小屏幕,Super AMOLED面板,分辨率1680×720(21:9),而展开后是一块7.3英寸的无缝大屏幕,Dynamic AMOLED材质,分辨率2048×1536(4.2:3)。

为了适配两款屏幕,三星共为Galaxy Fold配备了六颗摄像头。在折叠状态下,正面是一颗1000万像素自拍镜头,光圈F2.2,背面是垂直三摄,包括1600万像素超广角镜头(光圈F2.2)、1200万像素广角镜头(全像素双核,OIS光学防抖,光圈F1.5-2.4),1200万像素长焦镜头(PDAF相位对焦,OIS光学防抖,2倍光学变焦,光圈F2.4)。

而在展开后,正面还有双摄,一颗是1000万像素自拍镜头,光圈F2.2,另一颗是800万像素RGB景深镜头,光圈F1.9。

其它方面,三星Galaxy Fold搭载高通骁龙855,提供12GB LPDDR4X内存、512GB存储(UFS 3.0),内置4380mAh容量电池,支持QC2.0有线快充与无线充电,提供支持802.11ac与蓝牙5.0、NFC、USB Type-C接口,并保留3.5mm耳机孔。

三星折叠屏旗舰开售:15999元考虑下?

原创文章,作者:tangzheng,如若转载,请注明出处:http://www.antutu.com/doc/119844.htm

2

$(window).resize(function(){ $(".article-e").width($(".article-a").width()) }); $(document).ready(function () { // 微信二维码分享 var qrcode = new QRCode(document.getElementById("qrcode"), { width: 120, height: 120, text: this.location.href }); qrcode.makeCode(window.location.href); // 管理员一栏 $(".article-e").width($(".article-a").width()) // 新闻内页图片弹框 $(".article-b img").click(function(){ var _this = $(this); imgShow("#outerdiv", "#innerdiv", "#bigimg", _this); }); }) function getScrollTop() { var scroll_top = 0; if (document.documentElement && document.documentElement.scrollTop) { scroll_top = document.documentElement.scrollTop; } else if (document.body) { scroll_top = document.body.scrollTop; } return scroll_top; } // 图片弹框 function imgShow(outerdiv, innerdiv, bigimg, _this){ var src = _this.attr("src"); $("#bigimg").attr("src", src); // 获取当前点击图片的真实大小,与当前窗口比较 $("").attr("src", src).load(function(){ var windowW = $(window).width(); var windowH = $(window).height(); var realWidth = this.width; var realHeight = this.height; var imgWidth, imgHeight; var scale = 1; if(realHeight>windowH*scale) { imgHeight = windowH*scale; imgWidth = imgHeight/realHeight*realWidth; if(imgWidth>windowW*scale) { imgWidth = windowW*scale; imgHeight = imgWidth / realWidth * realHeight; } } else if(realWidth>windowW*scale) { imgWidth = windowW*scale; imgHeight = imgWidth/realWidth*realHeight; } else { imgWidth = realWidth; imgHeight = realHeight; } $("#bigimg").css("width",imgWidth); var w = (windowW-imgWidth)/2; var h = (windowH-imgHeight)/2; $("#innerdiv").css({"top":h, "left":w}); $(".navbar").fadeOut("fast") $(".article-e").fadeOut("fast") $("#outerdiv").fadeIn("fast"); }); //再次点击 关闭弹框 // $("#outerdiv").click(function(){ // $(this).fadeOut("fast"); // $(".navbar").fadeIn("fast") // $(".article-e").fadeIn("fast") // }); var imgFlag = true; var clickTimeId; $(bigimg).dblclick(function(){ $this = $(this); clearTimeout(clickTimeId); if(imgFlag){ imgFlag = false $this.css({ '-webkit-transform':'scale(2)', 'transform':'scale(2)' }) }else{ imgFlag = true $this.css({ '-webkit-transform':'scale(1)', 'transform':'scale(1)' }) } }); $(outerdiv).click(function(){ // 取消上次延时未执行的方法 clearTimeout(clickTimeId); //执行延时 clickTimeId = setTimeout(function() { //此处为单击事件要执行的代码 $(outerdiv).fadeOut("fast"); $(".navbar").fadeIn("fast") $(".article-e").fadeIn("fast") },300); }) } $(document).scroll(function () { var scroll_top=getScrollTop(); // 管理员一栏 if ($(window).height() - $(document).scrollTop()-scroll_top >= 200) { $(".article-e").addClass('fixedbottom'); $(".article-e").width($(".article-a").width()) } else { $(".article-e").removeClass('fixedbottom'); } })