高通骁龙625+双摄 魅族Note 6发布 仅售1099元

Antutu

阅读

8月23日,魅族在北京演艺中心正式发布了魅蓝Note6,以“STAY TRUE”为主题,立志重回“为年轻人做有设计和品质的好东西”的初衷。

高通骁龙625+双摄 魅族Note 6发布 仅售1099元

魅蓝Note 6采用5.5英寸1080P屏幕,全金属一体式机身,支持正面指纹识别支付。为了追求更好的手持握感,采用了全新的双立体收边设计。讲真,新机在外观方面并没有太大变化,它的核心亮点在于首次采用的双摄设计和提前用上的骁龙625,二者大大提升了魅蓝Note 6的拍照和性能,让煤油们惊喜不已。

高通骁龙625+双摄 魅族Note 6发布 仅售1099元

高通骁龙625+双摄 魅族Note 6发布 仅售1099元

先看相机吧。魅蓝Note 6的前置摄像头与OPPO旗舰机型同款的1600万像素摄像头,并采用与OPPO相同的虹软定制优化算法,在背景虚化、暗光多帧降噪以及美颜自拍方面都进行了优化。主相机采用的是1200万像素+500万像素的双摄像头组合,传感器使用了与三星S7同等规格的SONY IMX362/三星 2L7,具备全像素双核对焦功能,现场还放出了魅蓝Note 6分别与坚果Pro、小米6、华为P10等机型的拍照对比图,照片效果细节表现惊人。

高通骁龙625+双摄 魅族Note 6发布 仅售1099元

高通骁龙625+双摄 魅族Note 6发布 仅售1099元

据官方介绍,魅蓝Note 6将是一款足以比肩“旗舰级的千元机相机水准”。

高通骁龙625+双摄 魅族Note 6发布 仅售1099元

配置方面,魅蓝Note 6终于甩掉了“万年MTK”的帽子,搭载14nm制程的骁龙625移动平台,最高主频2.0GHz,图形处理器是Adreno 506,拥有更低的发热和功耗表现,这一点对手游爱好者们很重要。

现在的手机基本都逃避不了王者荣耀这款游戏,这就不光要求设备游戏全程无卡顿,还得有持久续航才能满足重度手机用户的需求。魅蓝Note 6的电池容量为4000mAh,支持18W快充,据官方介绍,可支持玩农药开黑31局。

高通骁龙625+双摄 魅族Note 6发布 仅售1099元

至于价格,魅蓝Note6提供了三个不同的版,其中3GB RAM+16GB ROM版本的售价为1099元;3GB RAM + 32GB ROM售1299元;4GB RAM + 64GB ROM售1699元。配色方面,魅蓝Note 6在常见的曜石黑、皓月银、香槟金配色外,推出了全新的孔雀青。开售时间方面,魅蓝Note6从即日起接受预约,9月1日起正式销售。

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

24

$(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'); } })