mirror of
https://github.com/Telecominfraproject/wlan-cloud-ucentralsec.git
synced 2025-10-29 18:02:29 +00:00
63 lines
1.9 KiB
HTML
63 lines
1.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en" >
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Whoops!</title>
|
|
<link rel="stylesheet" href="/wwwassets/sub_404_error.css">
|
|
</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">Whoops!</div>
|
|
<div class="box__description-text">You know computers sometimes go crazy...</div>
|
|
<div class="box__description-text">So we'll just assume one of them got
|
|
fed up and refused to help you...</div>
|
|
<div class="box__description-text"> If you get this again, we need to know. We need to let that thing know who's the boss...</div>
|
|
<div><img src="sub_logo_dark.png" alt="OpenWifi" class="logo-img"></div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script><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>
|