纯JS写一个用苹果序列号查询生产信息的小工具

news/2024/12/29 16:56:29/

苹果手机是目前比较火或者说是一直很火的手机,但是和人一样,人火是非多,东西也是,所以我们买苹果手机的时候都喜欢查询一下是什么时间出的,什么地方出的,但是奈何还要看很多的资料,登录这里那里去查询,有的更恶心的,还要你关注什么微信号才给你说,我也是一个果粉,所以我查看了一下苹果手机序列号的规则,决定做一个小的工具,可以直接查询手机的生产地和具体时间。今天我们就一起做一个!

我的源码地址:Github地址

密码是:include

效果预览:


我们简单的将思路说一下:

首先要知道怎么实现这个,要明白的是,苹果手机的序列号是按照什么规则排布的,

规则是:第一位字母:以 C 开头为深圳,以 D 开头为成都,以 F 开头为郑州
序列号的第四位代表生产年份,用 20 个字母表示(26 个字母中除去 A、B、E、I、O 和 U),注意是以每半年一进位。其中,M 代表 2014 年上半年,N 代表 2014 年下半年,P 代表 2015 年上半年,Q 代表 2015 年下半年,以此类推。
序列号的第五位是用数字(即 1 到 9,除去 0)和字母(26 个字母中除去 A、B、E、I、O、U、S 和 Z)来表示的,共 27 个,代表周数,从 1 开始,数完数字数字母,每半年一循环。比如 N1 和 N9 这两个序列号分别代表 2014 年下半年第一周和第九周生产。

需要注意的是,1 到 9 分别代表第 1 到第 9 周,接下来就是 C,代表第 10 周,以此类推。

这是他的规则,这里需要明确的一点是,他是以半年为一个区间,那么序号的第五位也是半年为一个区间,所以这里首先要判断是上半年还是下半年,然后再去判断具体的日期。

不BB了,看代码,很简单:

CSS:

	*{margin:0;padding:0;list-style-type:none;}a,img{border:0;}body{background: #000;color: #DDD;font-family: 'Helvetica', 'Lucida Grande', 'Arial', sans-serif;}.border,.rain{width: 320px;}.rain{padding: 10px 12px 12px 10px;-moz-box-shadow: 10px 10px 10px rgba(0,0,0,1) inset, -9px -9px 8px rgba(0,0,0,1) inset;-webkit-box-shadow: 8px 8px 8px rgba(0,0,0,1) inset, -9px -9px 8px rgba(0,0,0,1) inset;box-shadow: 8px 8px 8px rgba(0,0,0,1) inset, -9px -9px 8px rgba(0,0,0,1) inset;margin: 100px auto;}.border{padding: 1px;-moz-border-radius: 5px;-webkit-border-radius: 5px;border-radius: 5px;}.border,.rain,.border.start,.rain.start{background-repeat: repeat-x, repeat-x, repeat-x, repeat-x;background-position: 0 0, 0 0, 0 0, 0 0;background-image: -moz-linear-gradient(left, #09BA5E 0%, #00C7CE 15%, #3472CF 26%, #00C7CE 48%, #0CCF91 91%, #09BA5E 100%);background-image: -webkit-gradient(linear, left top, right top, color-stop(1%,rgba(0,0,0,.3)), color-stop(23%,rgba(0,0,0,.1)), color-stop(40%,rgba(255,231,87,.1)), color-stop(61%,rgba(255,231,87,.2)), color-stop(70%,rgba(255,231,87,.1)), color-stop(80%,rgba(0,0,0,.1)), color-stop(100%,rgba(0,0,0,.25)));background-color: #39f;filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00BA1B', endColorstr='#00BA1B',GradientType=1 );}.border.end,.rain.end{-moz-transition-property: background-position;  -moz-transition-duration: 30s;-moz-transition-timing-function: linear;-webkit-transition-property: background-position;  -webkit-transition-duration: 30s;  -webkit-transition-timing-function: linear;-o-transition-property: background-position;  -o-transition-duration: 30s;  -o-transition-timing-function: linear;transition-property: background-position;  transition-duration: 30s;  transition-timing-function: linear;background-position: -5400px 0, -4600px 0, -3800px 0, -3000px 0;    }@-webkit-keyframes colors {0% {background-color: #39f;}15% {background-color: #F246C9;}30% {background-color: #4453F2;}45% {background-color: #44F262;}60% {background-color: #F257D4;}75% {background-color: #EDF255;}90% {background-color: #F20006;}100% {background-color: #39f;}}.border,.rain{-webkit-animation-direction: normal;-webkit-animation-duration: 20s;-webkit-animation-iteration-count: infinite;-webkit-animation-name: colors;-webkit-animation-timing-function: ease;}.border.unfocus{background: #333 !important;    -moz-box-shadow: 0px 0px 15px rgba(255,255,255,.2);-webkit-box-shadow: 0px 0px 15px rgba(255,255,255,.2);box-shadow: 0px 0px 15px rgba(255,255,255,.2);-webkit-animation-name: none;}.rain.unfocus{background: #000 !important;    -webkit-animation-name: none;}form{background: #212121;-moz-border-radius: 5px;-webkit-border-radius: 5px;border-radius: 5px;height:220px;width: 100%;background: -moz-radial-gradient(50% 46% 90deg,circle closest-corner, #242424, #090909);background: -webkit-gradient(radial, 50% 50%, 0, 50% 50%, 150, from(#242424), to(#090909));}form label{display: block;padding: 10px 10px 5px 15px;font-size: 11px;color: #777;}form input{display: block;margin: 5px 10px 10px 15px;width: 85%;background: #111;-moz-box-shadow: 0px 0px 4px #000 inset;-webkit-box-shadow: 0px 0px 4px #000 inset;box-shadow: 0px 0px 4px #000 inset;outline: 1px solid #333;border: 1px solid #000;padding: 5px;color: #444;font-size: 16px;}form input:focus{outline: 1px solid #555;color: #FFF;}input[type="button"]{color: #999;padding: 5px 10px;border: 1px solid #000;font-weight: lighter;-moz-border-radius: 15px;-webkit-border-radius: 15px;border-radius: 15px;background: #45484d;background: -moz-linear-gradient(top, #222 0%, #111 100%);background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#222), color-stop(100%,#111));filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#22222', endColorstr='#11111',GradientType=0 );-moz-box-shadow: 0px 1px 1px #000, 0px 1px 0px rgba(255,255,255,.3) inset;-webkit-box-shadow: 0px 1px 1px #000, 0px 1px 0px rgba(255,255,255,.3) inset;box-shadow: 0px 1px 1px #000,0px 1px 0px rgba(255,255,255,.3) inset;text-shadow: 0 1px 1px #000;outline: none;width:80px;margin-top:20px;float: left;}

css可以不看,美观一点而已

引用:

<link rel="stylesheet" type="text/css" href="css/layui/css/layui.css"/>
<script src="js/jquery.min.js" type="text/javascript" charset="utf-8"></script>
<script src="css/layui/lay/dest/layui.all.js" type="text/javascript" charset="utf-8"></script>

JS:

$(function(){var $form_inputs =   $('form input');var $rainbow_and_border = $('.rain, .border');$form_inputs.bind('focus', function(){$rainbow_and_border.addClass('end').removeClass('unfocus start');});$form_inputs.bind('blur', function(){$rainbow_and_border.addClass('unfocus start').removeClass('end');});$form_inputs.first().delay(800).queue(function(){$(this).focus();});});var address;//生产地var years;//生产年份var dates;//生产日期function checkappleId(){/* 截取到第一位字符,用来判断的是生产地址 */var ID = $("#checkapple").val();var apple_adress = ID.substr(0,1); //截取的是第一位的字符串,然后截取的长度是一位/* 截取到第四位的字符,用来判断的是生产年份 */var Year = ID.substr(3,1);/* 截取到第五位的字符,用来判断生产日期 */var Dateflag = ID.substr(4,1);//截取到第五位/* 先判断是不是正确的是序列号 */if(ID.length != 12){layer.msg("序列号有误!请核对对后重新查询");}else{if(apple_adress == 'C'){address = '深圳';}else if(apple_adress == 'D'){address = '成都'}else if(apple_adress == 'F'){address = '郑州'}else{layer.msg("序列号有误!请核对对后重新查询");return false;} console.log("生产地是:"+address);console.log("第四位是:"+Year);console.log("第五位是:"+Dateflag);if(Year == 'M'){years = '2014上半年';check_before(Dateflag);}else if(Year == 'N'){years = '2014下半年';check_after(Dateflag);}else if(Year == 'P'){years = '2015上半年';check_before(Dateflag);}else if(Year == 'Q'){years = '2015下半年';check_after(Dateflag);}else if(Year == 'R'){years = '2016上半年';check_before(Dateflag);}else if(Year == 'S'){years = '2016下半年';check_after(Dateflag);}else if(Year == 'T'){years = '2017上半年';check_before(Dateflag);}else if(Year == 'V'){years = '2017下半年';check_after(Dateflag);}else if(Year == 'W'){years = '2018上半年';check_before(Dateflag);}else if(Year == 'X'){years = '2018下半年';check_after(Dateflag);}else if(Year == 'Y'){years = '2019上半年';check_before(Dateflag);}else if(Year == 'Z'){years = '2019下半年';check_after(Dateflag);}else{layer.msg("序列号有误!请核对对后重新查询");return false;}console.log("年份是:"+years);console.log("日期是:"+dates);layer.open({    type: 1,title:'查询结果',skin: 'layui-layer-rim', //加上边框area: ['600px', '400px'], //宽高btn:['关闭'],content: '您的序列号是:'+ID+'<br/>'+'该是手机生产地是:'+address+'<br/>'+'该是手机生产年份是:'+years+'<br/>'+'该是手机生产日期是:'+dates+'<br/>'+'提示:如果您查询的激活日期早于生产日期,说明您的手机是官换机!',});}}/* 判断的是每一年的下半年的日期 */function check_before(Dateflag){if(Dateflag == '1'){dates = '1月1日-1月7日';}else if(Dateflag == '2'){dates = '1月8日-1月14日';}else if(Dateflag == '3'){dates = '1月15日-1月21日';}else if(Dateflag == '4'){dates = '1月22日-1月28日';}else if(Dateflag == '5'){dates = '1月29日-2月4日';}else if(Dateflag == '6'){dates = '2月5日-2月11日';}else if(Dateflag == '7'){dates = '2月12日-2月18日';}else if(Dateflag == '8'){dates = '2月19日-2月25日';}else if(Dateflag == '9'){dates = '2月26日-3月1日';}else if(Dateflag == 'C'){dates = '3月2日-3月8日';}else if(Dateflag == 'D'){dates = '3月9日-3月15日';}else if(Dateflag == 'F'){dates = '3月16日-3月22日';}else if(Dateflag == 'G'){dates = '3月23日-3月29日';}else if(Dateflag == 'H'){dates = '4月30日-4月6日';}else if(Dateflag == 'J'){dates = '4月7日-4月13日';}else if(Dateflag == 'K'){dates = '4月14日-4月20日';}else if(Dateflag == 'L'){dates = '4月21日-4月27日';}else if(Dateflag == 'M'){dates = '4月28日-5月3日';}else if(Dateflag == 'N'){dates = '5月4日-5月10日';}else if(Dateflag == 'P'){dates = '5月11日-5月17日';}else if(Dateflag == 'Q'){dates = '5月18日-5月24日';}else if(Dateflag == 'R'){dates = '5月25日-6月1日';}else if(Dateflag == 'T'){dates = '6月2日-6月8日';}else if(Dateflag == 'V'){dates = '6月9日-6月15日';}else if(Dateflag == 'W'){dates = '6月16日-6月22日';}else if(Dateflag == 'X'){dates = '6月23日-6月29日';}else if(Dateflag == 'Y'){dates = '6月30日';}else{layer.msg("序列号有误!请核对对后重新查询");return false;}}/* 判断的是下半年具体日期 */function check_after(Dateflag){if(Dateflag == '1'){dates = '7月1日-7月7日';}else if(Dateflag == '2'){dates = '7月8日-7月14日';}else if(Dateflag == '3'){dates = '7月15日-7月21日';}else if(Dateflag == '4'){dates = '7月22日-7月28日';}else if(Dateflag == '5'){dates = '7月29日-8月4日';}else if(Dateflag == '6'){dates = '8月5日-8月11日';}else if(Dateflag == '7'){dates = '8月12日-8月18日';}else if(Dateflag == '8'){dates = '8月19日-8月25日';}else if(Dateflag == '9'){dates = '8月26日-9月1日';}else if(Dateflag == 'C'){dates = '9月2日-9月8日';}else if(Dateflag == 'D'){dates = '9月9日-9月15日';}else if(Dateflag == 'F'){dates = '9月16日-9月22日';}else if(Dateflag == 'G'){dates = '9月23日-9月29日';}else if(Dateflag == 'H'){dates = '9月30日-10月6日';}else if(Dateflag == 'J'){dates = '10月7日-10月13日';}else if(Dateflag == 'K'){dates = '10月14日-10月20日';}else if(Dateflag == 'L'){dates = '10月21日-10月27日';}else if(Dateflag == 'M'){dates = '10月28日-11月3日';}else if(Dateflag == 'N'){dates = '11月4日-11月10日';}else if(Dateflag == 'P'){dates = '11月11日-11月17日';}else if(Dateflag == 'Q'){dates = '11月18日-11月24日';}else if(Dateflag == 'R'){dates = '11月25日-12月1日';}else if(Dateflag == 'T'){dates = '12月2日-12月8日';}else if(Dateflag == 'V'){dates = '12月9日-12月15日';}else if(Dateflag == 'W'){dates = '12月16日-12月22日';}else if(Dateflag == 'X'){dates = '12月23日-12月29日';}else if(Dateflag == 'Y'){dates = '12月30日-12月31日';}else{layer.msg("序列号有误!请核对对后重新查询");return false;}}/*苹果的全系列产品 */function apple_info(){layer.open({    type: 1,title:'苹果全系类产品',skin: 'layui-layer-rim', //加上边框area: ['600px', '400px'], //宽高btn:['关闭'],content:'型号:IPHONE第一代,发布日期:2007年1月9日<hr><br/>'+'型号:3G,发布日期:2008年06月10日<hr><br/>'+'型号:3GS,发布日期:2009年6月9日<hr><br/>'+'型号:4,发布日期:2010年6月8日<hr><br/>'+'型号:4S,发布日期:2011年10月04日<hr><br/>'+'型号:5,发布日期:2012年9月13日<hr><br/>'+'型号:5C,发布日期:2013年9月10日<hr><br/>'+'型号:5S,发布日期:2013年9月10日<hr><br/>'+'型号:6,发布日期:2014年9月10日<hr><br/>'+'型号:6P,发布日期:2014年9月10日<hr><br/>'+'型号:6S,发布日期:2015年9月10日<hr><br/>'+'型号:6SP,发布日期:2015年9月10日<hr><br/>'+'型号:7,发布日期:2016年9月8日<hr><br/>'+'型号:7P,发布日期:2016年9月8日<hr><br/>'+'型号:8,发布日期:2017年9月13日<hr><br/>'+'型号:8P,发布日期:2017年9月13日<hr><br/>'+'型号:X,发布日期:2017年9月13日<hr><br/>'+'官方网址:<a href="https://www.apple.com/cn//?afid=p238%7C1dxLB2Qwz-dc_mtid_18707vxu38484_pcrid_16834665582_&cid=aos-cn-kwba-brand" target="_blank">点击进入<a/>',});} function reload(){location.reload();}

当然这里您使用switch case写也是可以的,毕竟if else很麻烦,写法是这样的:

	        /* 判断地址 */switch (apple_adress){case 'C':address = '深圳';break;case 'D':address = '成都';break;case 'F':address = '郑州';break;default:layer.msg("序列号有误!请核对对后重新查询");return false;}

H5:

<div class="rain"><div class="border start"><form><label for="text">苹果手机序列号查询</label><input name="text" type="text" placeholder="序列号" id="checkapple"/><input type="button" value="查询" οnclick="checkappleId()"/><input type="button" value="取消" οnclick="reload()"/><input type="button" value="苹果" οnclick="apple_info()"/></form></div></div>

思路是:

拿到用户输入的序列号-截取第一位,第四位,第五位的值-根据规则判断值-给对应的参数赋值

喜欢的可以关注我,一起学习,虽然写的没有什么技术含量,但是还是很实用的,毕竟思路清晰是锻炼出来的,一点点积累吧!



http://www.ppmy.cn/news/445851.html

相关文章

苹果CMS-v10系统标签

模板标签 本篇主要讲解v10自带系统标签和模板规范 模板目录 系统模板系统放在/template/目录下。在后台站点设置中&#xff0c;可以选择当前使用的模板 │─template/1/ 模板1│ ├─ads 广告文件目录│ ├─js js文件│ ├─css css文件│ ├─images 图片文件│ └─html 模板…

itools苹果录屏大师_怎么录屏苹果?学会这些录屏软件!以后都省的截图了

怎么录屏苹果&#xff1f;在使用苹果的产品时&#xff0c;你是否也遇到过需要录屏的场景&#xff1f;如果是的话你一般是用什么方式解决&#xff1f;相信很多的小伙伴都会使用系统自带的录屏软件&#xff0c;但是由于录屏占用的内存较大&#xff0c;或者录屏取法设置参数&#…

sp5.2 NLP

之前用词库然后一直one-hot表示单词 这样会使得算法泛化性不强 即使知道第一空怎么填了 第二个空还是不知道 因为从one-hot这种编码方式还是不知道橘子和苹果的关系 任何两个内积都是0 这些词向量距离都一样 换种方式表示词 词嵌入&#xff08;Word Embedding&#xff09;嵌入就…

FFmpeg--转码参数调整

H.264有四种画质级别,分别是baseline, extended, main, high&#xff1a; 1、Baseline Profile&#xff1a;基本画质。支持I/P 帧&#xff0c;只支持无交错&#xff08;Progressive&#xff09;和CAVLC&#xff1b;2、Extended profile&#xff1a;进阶画质。支持I/P/B/SP/SI …

关于苹果Xcode编译器与Bitcode

前言 做iOS开发的朋友们都知道,目前最新的Xcode7,新建项目默认就打开了bitcode设置.而且大部分开发者都被这个突如其来的bitcode功能给坑过导致项目编译失败,而这些因为bitcode而编译失败的的项目都有一个共同点,就是链接了第三方二进制的库或者框架,而这些框架或者库恰好没有…

苹果CMS漏洞

1.环境搭建&#xff1a; 最新版本好像修复了这个漏洞 后来看大佬们分析是加了360safe、把他注释掉就可以复现了 审计过程&#xff1a; 首先在maccms8_mfb\inc\module\vod.php文件中的第93-98行的代码当$methodsearch成立的时候便回进入到be(“all”, “wd”)获取请求中wd参数…

Joomla技术支持-SP Page Builder

简介 SP Page Builder是一个最灵活的页面构建工具。通过鼠标拖放即可完成Joomla的页面构建。你可以创造任何你想要的布局&#xff0c;不像模板那样&#xff0c;把你限制在预创的模板布局中。它可以用于构建独特的页面。它可以使用任何Joomla模板&#xff0c;无论是免费或收费。…

apn描述文件下载_iOS 11.3 beta 6描述文件下载|苹果iOS 11.3 Beta 6描述文件官方版_ - 极光下载站...

iOS 11.3 Beta 6苹果官方已经放出公测版和开发者预览版系统更新。iPhone X新增了四个Animoji&#xff0c;还有就是新的健康记录功能。更新需要描述文件&#xff01; iOS 11.3 beta 6更新使用评测&#xff1a; iOS 11.3是一个重大更新&#xff0c;引入了一系列新功能&#xff0c…