go.php
<?php
$t_url=$_GET['url'];
if(!empty($t_url)) {
preg_match('/(http|https):\/\//',$t_url,$matches);
if($matches){
$url=$t_url;
$title='亲爱的朋友记得常来爱收集资源网哦...';
} else {
preg_match('/\./i',$t_url,$matche);
if($matche){
$url='http://'.$t_url;
$title='亲爱的朋友记得常回来哦...';
} else {
$url='http://www.gzpu.com';
$title='参数错误 正在返回首页~~~';
}
}
} else {
$title='参数缺失,正在返回首页...';
$url='http://www.gzpu.com';
}
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="refresh" content="1;url='<?php echo $url;?>';">
<title><?php echo $title;?></title>
<style>
body{background:#}.loading{-webkit-animation:fadein 2s;-moz-animation:fadein 2s;-o-animation:fadein 2s;animation:fadein 2s}@-moz-keyframes fadein{from{opacity:}to{opacity:}}@-webkit-keyframes fadein{from{opacity:}to{opacity:}}@-o-keyframes fadein{from{opacity:}to{opacity:}}@keyframes fadein{from{opacity:}to{opacity:}}.spinner-wrapper{position:absolute;top:;left:;z-index:;height:%;min-width:%;min-height:%;background:rgba(,,,0.93)}.spinner-text{position:absolute;top:%;left:%;margin-left:-90px;margin-top: 2px;color:#BBB;letter-spacing:1px;font-weight:;font-size:36px;font-family:Arial}.spinner{position:absolute;top:%;left:%;display:block;margin-left:-160px;width:1px;height:1px;border:25px solid rgba(,,,);-webkit-border-radius:50px;-moz-border-radius:50px;border-radius:50px;border-left-color:transparent;border-right-color:transparent;-webkit-animation:spin .5s infinite;-moz-animation:spin .5s infinite;animation:spin .5s infinite}@-webkit-keyframes spin{%,%{-webkit-transform:rotate(0deg) scale()}%{-webkit-transform:rotate(720deg) scale(0.6)}}@-moz-keyframes spin{%,%{-moz-transform:rotate(0deg) scale()}%{-moz-transform:rotate(720deg) scale(0.6)}}@-o-keyframes spin{%,%{-o-transform:rotate(0deg) scale()}%{-o-transform:rotate(720deg) scale(0.6)}}@keyframes spin{%,%{transform:rotate(0deg) scale()}%{transform:rotate(720deg) scale(0.6)}}
</style>
</head>
<body>
<div class="loading">
<div class="spinner-wrapper">
<span class="spinner-text">广告商所作任何行为均与本站无关 请知悉</span>
<span class="spinner"></span>
</div>
</div>
</body>
</html>
随机推荐
- 基于PO和单例设计模式用python+selenium进行ui自动化框架设计
一)框架目录的结构 二)config包当中的config.ini文件主要是用来存项目的绝对路径,是为了后续跑用例和生成测试报告做准备然后目前的配置文件大都会用yaml,ini,excel,还有.py也 ...
- 如何强制文件上传git仓库里
1.首先在本地创建一个文件夹里写入一个txt文件 2.然后复制你仓库的地址 3.平时正常操作都是这样上传不上 4.没关系我们使用强制上传 代码是 git push -f “你的仓库地址” mast ...
- django初步了解(一)
安装django pip3 install django==版本号 创建一个djangp项目 django-admin startproject 项目名 目录介绍: 运行django项目: pytho ...
- vscode中vim插件对ctrl键的设置
vim配置 在使用中经常想使用ctrl-c,虽然在vscode中有配置选项可以让vim与ctrl键解绑,但是这样就使用不了vim的VISUAL BLOCK.所以进行了自定义设置. 设置 - Vim C ...
- Jenkins - 基于 Docker 的 Jenkins 安装
概述 安装 Jenkins 基于 Docker 这个有点 水一发 的性质... 场景 学习 Jenkins 第一步, 当然是安装 但是 安装的方法 很多 Jenkins 是基于 Java 的 所以是个 ...
- HTML5学习(5)实体字符
HTML Entity 实体字符通常用于在页面中显示一些特殊符号. 书写方式: 1. &单词; 2. &#数字; 常用实体字符: < < litter than &g ...
- 每天进步一点点------直接数字频率合成DDS
- [Note]后缀数组
后缀数组 代码 void rsort() { for (int i = 1; i <= m; ++i) tax[i] = 0; for (int i = 1; i <= n; ++i) + ...
- eclipse报错:unable to install breakpoint in .......due to missing line number attributes
报错信息如下: 解决方案方案1.把断点都干掉,再启动.应该是代码更新后,断点位置没有代码了或位置改变了. 方案2.在Eclipse - Preferences - Java - Complier 下 ...
- JS-对象常用方法整理
查看对象的方法,继续控制台输出,如图: hasOwnProperty():返回一个布尔值,指示对象自身属性中是否具有指定的属性(也就是,是否有指定的键). let object1 = new Obje ...