当前位置: 首页 > news >正文

酷炫末世意境背景404单页HTML源码

源码介绍

酷炫末世意境背景404单页HTML源码,背景充满着破坏一切的意境,彷佛末世的到来,可以做网站错误页或者丢失页面,将下面的代码放到空白的HTML里面,然后上传到服务器里面,设置好重定向即可

效果预览

在这里插入图片描述

完整源码

<!DOCTYPE html>
<html><head><meta charset="utf-8"><title>404 Apocalypse</title><link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.2/themes/smoothness/jquery-ui.css"/><style>@import url(https://fonts.googleapis.com/css?family=Sigmar+One);
@import url(https://fonts.googleapis.com/css?family=Poiret+One);body {background-image:url('https://wallpapercave.com/wp/jj5KxtS.jpg');background-attachment:fixed;background-size:cover;background-color: #222;margin:0px;padding:0px;overflow:hidden;font-family: 'Poiret One', cursive;
}h1
{font-size:200px;width:100vw;text-align:center;color:rgba(0,255,0,1);font-family: 'Poiret One', cursive;}span
{cursor:move;
}.underline
{font-size:50px;color:white;text-align:center;
}.button
{font-size:50px;color:white;font-family: 'Poiret One', cursive;text-align:center;
}.button span
{cursor:pointer;padding:10px;border-style:solid;border-radius:5px;transition:border-color 0.75s;-webkit-transition:border-color 0.75s;
}.button span:hover
{border-color:rgb(0,255,0);
}</style></head><body><div class='underline'><span>Sorry</span><span>, </span><span>this </span><span>page </span><span>didn</span><span>'</span><span>t</span><span> survive</span></div>		<h1><span>4</span><span>0</span><span>4</span></h1>		    <div class='button'><a title='https://www.qqmu.com'><span >Join the survivors</span></a></div><script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script><script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.2/jquery-ui.min.js"></script><script src="https://cdn.rawgit.com/tinybigideas/jGravity/f3265bdd/jGravity-min.js"></script><script>/* refresh if you didn't have body's background which appears*/
$(function() {
$(document).ready(function() {var one =false;$('.button span').mouseover(function(){     if(!one){$('body').jGravity({target: 'span',ignoreClass: 'dontMove',weight: 25,depth: 100,drag: true});one =true;};});});
});</script></body>
</html>

页面加载有点慢,可以将远程css和js弄到本地就可以了

http://www.lryc.cn/news/402865.html

相关文章:

  • PHP 调用 1688 详情 API 接口的实战攻略
  • SAP ABAP性能优化
  • 【鸿蒙学习笔记】构建布局・选项卡 (Tabs)
  • 独立游戏《星尘异变》UE5 C++程序开发日志5——实现物流系统
  • Web开发:<br>标签的作用
  • DVC+Minio
  • C++内存管理(区别C语言)深度对比
  • 手把手带你写一个精简版 HashMap 的 put 方法
  • 【面试题】数据结构:堆排序的排序思想?
  • PyTorch 深度学习实践-循环神经网络基础篇
  • vue实现可拖拽dialog封装
  • 本地多模态看图说话-llava
  • 人工智能算法工程师(中级)课程14-神经网络的优化与设计之拟合问题及优化与代码详解
  • Java异常抛出与处理方法
  • 兼容性测试主要有什么类型?
  • 设计模式--组合模式
  • ArduPilot开源代码之AP_DAL_RangeFinder
  • SpringCloud教程 | 第九篇: 使用API Gateway
  • 数据结构——hash(hashmap源码探究)
  • 国产麒麟、UOS在线打开pdf加盖印章
  • 破解反爬虫策略 /_guard/auto.js(二)实战
  • 同样是人工智能 客户在哪儿AI和GPT等大模型有什么不同
  • AES Android IOS H5 加密方案
  • 一文了解变阻器和电位器的定义、原理、应用及其对比
  • WPF实现一个带旋转动画的菜单栏
  • 使用Dockerfile构建镜像
  • 概率论原理精解【3】
  • [C/C++入门][循环]14、计算2的幂(2的n次方)
  • RPC与服务的注册发现
  • 3112. 访问消失节点的最少时间 Medium