一串代码添加访问问候弹窗

非网站永久会员,不再提供任何技术支持!

一串代码添加访问问候弹窗-蝙蝠猫网- 第6张图片

访问弹窗,根据用户的访问ip来告知大概位置,能告知ip地址,设备帧数 左下角),大概使用的浏览器,以及操作系统。建议加在首页就好但是目前有个问题就是如果加了,会在每一次访问都会出现,待优化代码如下

<!-- 客户端信息 --> 
<div id="fps" style="z-index:5;position:fixed;bottom:3px;left:3px;color:#2196F3;font-size:10px;-webkit-pointer-events: none; -moz-pointer-events: none; -ms-pointer-events: none; -o-pointer-events: none;"></div> 
<script type="text/javascript" src="https://cdn.jsdelivr.net/gh/kaliisra/myblogstatic/kehuduan-js/fetch.min.js"></script> 
<script src="https://cdn.gmit.vip/layer/3.1.1/layer.js" type="text/javascript" charset="utf-8"></script> 
<script> /*网站打开提醒代码开始*/ $(function(){ if(/*getCookie(\'msg\') !=*/ 1){ var t = document.createElement("a"); t.href = document.referrer; var msgTitle = t.hostname; var name = t.hostname.split(".")[1]; if("" !== document.referrer){ switch (name) { case \'bing\': msgTitle = \'必应搜索\'; break; case \'baidu\': msgTitle = \'百度搜索\'; break; case \'so\': msgTitle = \'360搜索\'; break; case \'google\': msgTitle = \'谷歌搜索\'; break; case \'sm\': msgTitle = \'神马搜索\'; break; case \'sogou\': msgTitle = \'搜狗搜索\'; break; default: msgTitle = t.hostname; }; }; var time = (new Date).getHours(); var msg = \'\'; 23 < time || time <= 5 ? msg = "你是夜猫子呀?这么晚还不睡觉,明天起的来嘛?": 5< time && time <= 7 ? msg = "早上好!一日之计在于晨,美好的一天就要开始了!": 7< time && time <= 11 ? msg = "上午好!工作顺利嘛,不要久坐,多起来走动走动哦!": 11< time && time <= 14 ? msg = "中午了,工作了一个上午,现在是午餐时间!": 14< time && time <= 17 ? msg = "午后很容易犯困呢,今天的运动目标完成了吗?": 17< time && time <= 19 ? msg = "傍晚了!窗外夕阳的景色很美丽呢,最美不过夕阳红~": 19< time && time <= 21 ? msg = "晚上好,今天过得怎么样?": 21< time && time <= 23 && (msg = "已经这么晚了呀,早点休息吧,晚安~"); $.ajax({ type:"get", url:"https://api.gmit.vip/Api/UserInfo/", async:true, success:function(data){ window.info = data; layer.msg("Hi~ 来自"+ data.data.location + \'~<br/>通过 \'+msgTitle+\' 进来的朋友!<br/>使用 \'+ data.data.os +"<br/>"+ data.data.browser +\' 访问本站!\' + \'<br/>\' + msg); var showFPS = (function(){ var requestAnimationFrame = window.requestAnimationFrame || window.webkitRequestAnimationFrame || window.mozRequestAnimationFrame || window.oRequestAnimationFrame || window.msRequestAnimationFrame || function(callback) { window.setTimeout(callback, 1000/60); }; var e,pe,pid,fps,last,offset,step,appendFps; fps = 0; last = Date.now(); step = function(){ offset = Date.now() - last; fps += 1; if( offset >= 1000 ){ last += offset; appendFps(fps); fps = 0; }; requestAnimationFrame( step ); }; appendFps = function(fps){ var settings = { timeout: 5000, logError: true }; $(\'#fps\').html(\'<a style="float:left;">\'+fps+\'FPS</a><br/><a style="float:left">\'+window.info.data.os+\'</a><br/><a style="float:left;margin-top:1px;">\'+window.info.data.browser+\'</a><br/><a style="float:left;margin-top:1px;">\'+window.info.data.location+\'</a><br/><a style="float:left;margin-top:1px;"></a>\'); }; step(); })(); } }); }; }); </script> 
 <!-- 客户端信息 --> 
------本页内容已结束,喜欢请分享------

感谢您的来访,获取更多精彩文章请收藏本站。

© 版权声明
THE END
喜欢就支持一下吧
点赞583赞赏 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容