本站自用-重新定义404页面html源码

本站自用-重新定义404页面html源码

简单、美观、好用的404页面,只为让你的网站错误页面更干净,更好用。免费个性化创意动画404错误页面,两只眼睛跟着鼠标移动,很有创意哦

<!doctype html>  <html>  <head>  <meta charset="utf-8">  <title> 400 Bad Request</title>    <script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script>  <meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />  <style>  html, body {    background: #28254C;    font-family: 'Ubuntu';  }    * {    box-sizing: border-box;  }    .box {    width: 350px;    height: 100%;    max-height: 600px;    min-height: 450px;    background: #332F63;    border-radius: 20px;    position: absolute;    left: 50%;    top: 50%;    transform: translate(-50%, -50%);    padding: 30px 50px;  }  .box .box__ghost {    padding: 15px 25px 25px;    position: absolute;    left: 50%;    top: 30%;    transform: translate(-50%, -30%);  }  .box .box__ghost .symbol:nth-child(1) {    opacity: .2;    animation: shine 4s ease-in-out 3s infinite;  }  .box .box__ghost .symbol:nth-child(1):before, .box .box__ghost .symbol:nth-child(1):after {    content: '';    width: 12px;    height: 4px;    background: #fff;    position: absolute;    border-radius: 5px;    bottom: 65px;    left: 0;  }  .box .box__ghost .symbol:nth-child(1):before {    transform: rotate(45deg);  }  .box .box__ghost .symbol:nth-child(1):after {    transform: rotate(-45deg);  }  .box .box__ghost .symbol:nth-child(2) {    position: absolute;    left: -5px;    top: 30px;    height: 18px;    width: 18px;    border: 4px solid;    border-radius: 50%;    border-color: #fff;    opacity: .2;    animation: shine 4s ease-in-out 1.3s infinite;  }  .box .box__ghost .symbol:nth-child(3) {    opacity: .2;    animation: shine 3s ease-in-out .5s infinite;  }  .box .box__ghost .symbol:nth-child(3):before, .box .box__ghost .symbol:nth-child(3):after {    content: '';    width: 12px;    height: 4px;    background: #fff;    position: absolute;    border-radius: 5px;    top: 5px;    left: 40px;  }  .box .box__ghost .symbol:nth-child(3):before {    transform: rotate(90deg);  }  .box .box__ghost .symbol:nth-child(3):after {    transform: rotate(180deg);  }  .box .box__ghost .symbol:nth-child(4) {    opacity: .2;    animation: shine 6s ease-in-out 1.6s infinite;  }  .box .box__ghost .symbol:nth-child(4):before, .box .box__ghost .symbol:nth-child(4):after {    content: '';    width: 15px;    height: 4px;    background: #fff;    position: absolute;    border-radius: 5px;    top: 10px;    right: 30px;  }  .box .box__ghost .symbol:nth-child(4):before {    transform: rotate(45deg);  }  .box .box__ghost .symbol:nth-child(4):after {    transform: rotate(-45deg);  }  .box .box__ghost .symbol:nth-child(5) {    position: absolute;    right: 5px;    top: 40px;    height: 12px;    width: 12px;    border: 3px solid;    border-radius: 50%;    border-color: #fff;    opacity: .2;    animation: shine 1.7s ease-in-out 7s infinite;  }  .box .box__ghost .symbol:nth-child(6) {    opacity: .2;    animation: shine 2s ease-in-out 6s infinite;  }  .box .box__ghost .symbol:nth-child(6):before, .box .box__ghost .symbol:nth-child(6):after {    content: '';    width: 15px;    height: 4px;    background: #fff;    position: absolute;    border-radius: 5px;    bottom: 65px;    right: -5px;  }  .box .box__ghost .symbol:nth-child(6):before {    transform: rotate(90deg);  }  .box .box__ghost .symbol:nth-child(6):after {    transform: rotate(180deg);  }  .box .box__ghost .box__ghost-container {    background: #fff;    width: 100px;    height: 100px;    border-radius: 100px 100px 0 0;    position: relative;    margin: 0 auto;    animation: upndown 3s ease-in-out infinite;  }  .box .box__ghost .box__ghost-container .box__ghost-eyes {    position: absolute;    left: 50%;    top: 45%;    height: 12px;    width: 70px;  }  .box .box__ghost .box__ghost-container .box__ghost-eyes .box__eye-left {    width: 12px;    height: 12px;    background: #332F63;    border-radius: 50%;    margin: 0 10px;    position: absolute;    left: 0;  }  .box .box__ghost .box__ghost-container .box__ghost-eyes .box__eye-right {    width: 12px;    height: 12px;    background: #332F63;    border-radius: 50%;    margin: 0 10px;    position: absolute;    right: 0;  }  .box .box__ghost .box__ghost-container .box__ghost-bottom {    display: flex;    position: absolute;    top: 100%;    left: 0;    right: 0;  }  .box .box__ghost .box__ghost-container .box__ghost-bottom div {    flex-grow: 1;    position: relative;    top: -10px;    height: 20px;    border-radius: 100%;    background-color: #fff;  }  .box .box__ghost .box__ghost-container .box__ghost-bottom div:nth-child(2n) {    top: -12px;    margin: 0 -0px;    border-top: 15px solid #332F63;    background: transparent;  }  .box .box__ghost .box__ghost-shadow {    height: 20px;    box-shadow: 0 50px 15px 5px #3B3769;    border-radius: 50%;    margin: 0 auto;    animation: smallnbig 3s ease-in-out infinite;  }  .box .box__description {    position: absolute;    bottom: 30px;    left: 50%;    transform: translateX(-50%);  }  .box .box__description .box__description-container {    color: #fff;    text-align: center;    width: 200px;    font-size: 16px;    margin: 0 auto;  }  .box .box__description .box__description-container .box__description-title {    font-size: 24px;    letter-spacing: .5px;  }  .box .box__description .box__description-container .box__description-text {    color: #8C8AA7;    line-height: 20px;    margin-top: 20px;  }  .box .box__description .box__button {    display: block;    position: relative;    background: #FF5E65;    border: 1px solid transparent;    border-radius: 50px;    height: 50px;    text-align: center;    text-decoration: none;    color: #fff;    line-height: 50px;    font-size: 18px;    padding: 0 70px;    white-space: nowrap;    margin-top: 25px;    transition: background .5s ease;    overflow: hidden;  }  .box .box__description .box__button:before {    content: '';    position: absolute;    width: 20px;    height: 100px;    background: #fff;    bottom: -25px;    left: 0;    border: 2px solid #fff;    transform: translateX(-50px) rotate(45deg);    transition: transform .5s ease;  }  .box .box__description .box__button:hover {    background: transparent;    border-color: #fff;  }  .box .box__description .box__button:hover:before {    transform: translateX(250px) rotate(45deg);  }    @keyframes upndown {    0% {      transform: translateY(5px);    }    50% {      transform: translateY(15px);    }    100% {      transform: translateY(5px);    }  }  @keyframes smallnbig {    0% {      width: 90px;    }    50% {      width: 100px;    }    100% {      width: 90px;    }  }  @keyframes shine {    0% {      opacity: .2;    }    25% {      opacity: .1;    }    50% {      opacity: .2;    }    100% {      opacity: .2;    }  }  </style>  </head>  <body>  <div class="box">    <div class="box__ghost">      <div class="symbol"></div>      <div class="symbol"></div>      <div class="symbol"></div>      <div class="symbol"></div>      <div class="symbol"></div>      <div class="symbol"></div>            <div class="box__ghost-container">        <div class="box__ghost-eyes">          <div class="box__eye-left"></div>          <div class="box__eye-right"></div>        </div>        <div class="box__ghost-bottom">          <div></div>          <div></div>          <div></div>          <div></div>          <div></div>        </div>      </div>      <div class="box__ghost-shadow"></div>    </div>        <div class="box__description">      <div class="box__description-container">        <div class="box__description-title">Error 400 --Bad Request</div>        <div class="box__description-text">过段时间再来访问</div>        <div class="box__description-text">如果您正在使用CDN产品<br>请稍等一段时间,节点正在同步数据 <a href="https://www.molure.cn" style="color:#33cccc">www.molure.cn</a></div>      </div>            <a href="/" onclick="document.cookie='yjs_use_ob=0;path=/';window.location.reload();return false;" class="box__button">刷新重试</a>          </div>      </div>    <script>  var pageX = $(document).width();  var pageY = $(document).height();  var mouseY=0;  var mouseX=0;  $(document).mousemove(function( event ) {    mouseY = event.pageY;    yAxis = (pageY/2-mouseY)/pageY*300;     mouseX = event.pageX / -pageX;    xAxis = -mouseX * 100 - 100;    $('.box__ghost-eyes').css({ 'transform': 'translate('+ xAxis +'%,-'+ yAxis +'%)' });   });</script>    </body>  </html>

WEEX唯客是一家安全易用的加密货币交易所,由新加坡顶级区块链投资机构斥资1亿美元打造,注册用户超百万,日均交易额超15亿美元,已获得美国MSB、加拿大MSB、SVGFSA金融牌照。

WEEX唯客平台所有数据皆于海外数据库严格保存,服务器多地部署和备份,并采用满足银行级安全需求的亚马逊AWS及高速高稳定性的香港CDN,为全球用户提供最安全、最专业、最具隐私性的交易服务。

WEEX唯客是全球交易深度最好的合约交易所之一,位居CMC交易所流动性排名前五,订单厚度、价差领先同行,微秒级撮合,零滑点、零插针,最大程度降低交易成本及流动性风险,让用户面对极端行情也能丝滑成交。

在WEEX唯客,用户不仅能享受行业最低的交易手续费(Taker 0手续费,Maker 0.06%),还可零门槛一键跟随专业交易员操作,复制高手的交易策略,平台严格甄选数5,000多名优秀交易员供用户挑选。

为保障用户资金安全,WEEX唯客设立了1,000 BTC投资者保护基金,以在非用户自身原因的情况下有效补偿用户资金出现的意外损失,并公示资金池热钱包地址,让用户交易安心无忧。

WEEX官网:weex.com

你也可以在 CMCCoingecko非小号X (Twitter)中文 X (Twitter)YoutubeFacebookLinkedin微博 上关注我们,第一时间获取更多投资资讯和空投福利。

在线咨询

WEEX华语社群:https://t.me/weex_group

WEEX英文社群:https://t.me/Weex_Global

© 版权声明
THE END
喜欢就支持一下吧
点赞5 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情

    暂无评论内容

随即推荐
简述移动硬盘数据恢复一般多少钱-H5资源网

简述移动硬盘数据恢复一般多少钱

移动硬盘数据恢复一般多少钱?有些用户在使用电脑的时候,不小心操作导致硬盘出现问题,里面的数据丢失了,不知道要怎么将电脑硬盘数据恢复,想送去给别人检修恢复。下面小编就给大家揭晓下常规...
医院年终工作总结PPT模板-H5资源网

医院年终工作总结PPT模板

医院年终工作总结模板。一套医院年终工作总结汇报幻灯片ppt pptX 大小:818KB 日期:2023-01-01 效果:静态 下载地址1 下载地址2
1年前
03215
简述电脑黑屏了怎么重装系统-H5资源网

简述电脑黑屏了怎么重装系统

电脑作为现在大比较家常用的办公辅助工具,它的功能齐全,携带十分便捷,但部分用户的电脑系统使用的时间久了之后,难免会遇到各种各样的故障,比如说经常会遇到的电脑黑屏情况。最近就有用户因...
1年前
02515
美女号升级玩法:利用虚拟资源变现,日入三位数(教程+素材)-H5资源网

美女号升级玩法:利用虚拟资源变现,日入三位数(教程+素材)

大家好,今天给大家带来的项目是《美女号升级玩法,利用虚拟资源变现,日入600+》,项目就是在抖音、快手平台发美女搭配学习英语单词,轻松解决了封号问题,百分百过原创上抖+,无成本的美女写...
9个月前
05814
简述电脑系统坏了如何重装-H5资源网

简述电脑系统坏了如何重装

工具/原料:系统版本:windows系统品牌型号:惠普CQ15-a102TX软件版本:小白一键重装系统v2290
1年前
04514
如何恢复移动硬盘里的数据文件-H5资源网

如何恢复移动硬盘里的数据文件

工具/原料: 系统版本:windows10系统 品牌型号:联想小新air15 软件版本:小白数据恢复软件1.1
网站访客大数据腾讯地图API展示源码-H5资源网

网站访客大数据腾讯地图API展示源码

一款基于腾讯地图API开发的网站访客大数据展示源码,具体大家看效果图就明白是什么东西了。
2年前
0375

Vitalik Buterin认可将TiTok压缩方法用于区块链应用

作者:Josh O'Sullivan,CoinTelegraph;编译:白水,金色财经 以太坊联合创始人 Vitalik Buterin 已认可新的 Token for Image Tokenizer (TiTok) 压缩方法,用于其潜在的区块链应用。 不要与社...
2个月前
04713

百融云:用MaaS为B端寻找AI最优解

如果没有开源,就没有Linux、PHP、MySQL,也就没有中国的数据库和互联网;如果没有Transformer的开源,也就不会有OPEN AI和ChatGPT。但正因为有了开源,才会出现AI同质化,也就将导致MaaS(模型...
3个月前
0468
QQ再次被大规模盗号-H5资源网

QQ再次被大规模盗号

今天凌晨3点多突然很多人发消息一进去看全是色情广告,QQ被大规模盗号已经不是一次两次了,感觉 腾讯 好像没有太好的解决办法。
2年前
02915