当前仓库属于关闭状态,部分功能使用受限,详情请查阅 仓库状态说明
2 Star 8 Fork 4

新年 / html-单页面多功能后台模板
关闭

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
auth-comingsoon-v1.html 6.58 KB
一键复制 编辑 原始数据 按行查看 历史
black泥鳅l 提交于 2018-10-10 11:57 . 初始化仓库内容
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- End Required meta tags -->
<!-- Begin SEO tag -->
<title> Coming Soon | Looper - Bootstrap 4 Admin Theme </title>
<meta property="og:title" content="Coming Soon">
<meta name="author" content="Beni Arisandi">
<meta property="og:locale" content="en_US">
<meta name="description" content="Responsive admin theme build on top of Bootstrap 4">
<meta property="og:description" content="Responsive admin theme build on top of Bootstrap 4">
<link rel="canonical" href="http://uselooper.com">
<meta property="og:url" content="http://uselooper.com">
<meta property="og:site_name" content="Looper - Bootstrap 4 Admin Theme">
<script type="application/ld+json">
{
"name": "Looper - Bootstrap 4 Admin Theme",
"description": "Responsive admin theme build on top of Bootstrap 4",
"author":
{
"@type": "Person",
"name": "Beni Arisandi"
},
"@type": "WebSite",
"url": "",
"headline": "Coming Soon",
"@context": "http://schema.org/"
}
</script>
<!-- End SEO tag -->
<!-- Favicons -->
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="apple-touch-icon.png" tppabs="http://uselooper.com/assets/apple-touch-icon.png">
<link rel="shortcut icon" href="favicon.ico" tppabs="http://uselooper.com/assets/favicon.ico">
<meta name="theme-color" content="#3063A0">
<!-- BEGIN BASE STYLES -->
<link rel="stylesheet" href="static/css/bootstrap.min.css" tppabs="http://uselooper.com/assets/vendor/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="static/css/fontawesome.all.css" tppabs="http://uselooper.com/assets/vendor/fontawesome/css/fontawesome.all.css">
<!-- END BASE STYLES -->
<!-- BEGIN THEME STYLES -->
<link rel="stylesheet" href="static/css/main.min.css" tppabs="http://uselooper.com/assets/stylesheets/main.min.css">
<link rel="stylesheet" href="static/css/custom.css" tppabs="http://uselooper.com/assets/stylesheets/custom.css">
<!-- END THEME STYLES -->
</head>
<body>
<!-- .empty-state -->
<main id="comingsoon" class="empty-state empty-state-fullpage bg-primary text-white" style="background-image: url(static/images/img-1.png);">
<!-- .empty-state-container -->
<div class="empty-state-container">
<h1 class="state-header"> COMING SOON </h1>
<div id="clock" class="countdown display-3">
<div class="countdown-item"> 00
<small>Days</small>
</div>
<div class="countdown-item"> 00
<small>Hr</small>
</div>
<div class="countdown-item"> 00
<small>Min</small>
</div>
<div class="countdown-item"> 00
<small>Sec</small>
</div>
</div>
<p class="state-description lead text-light"> We're a Creative Agency based in Europe. Be the first to know when we live. </p>
<form class="w-75 mx-auto">
<div class="form-group">
<div class="input-group input-group-lg circle">
<input type="email" class="form-control" placeholder="Your email">
<div class="input-group-append">
<button type="submit" class="btn btn-warning circle">
<span class="d-none d-sm-inline">Subcribe</span>
<span class="d-inline d-sm-none" aria-label="Subcribe">
<i class="fa fa-arrow-circle-right"></i>
</span>
</button>
</div>
</div>
</div>
</form>
<div class="state-action">
<a href="#" class="btn btn-reset">
<i class="fab fa-fw fa-facebook"></i>
</a>
<a href="#" class="btn btn-reset">
<i class="fab fa-fw fa-twitter"></i>
</a>
<a href="#" class="btn btn-reset">
<i class="fab fa-fw fa-instagram"></i>
</a>
<a href="#" class="btn btn-reset">
<i class="fab fa-fw fa-linkedin"></i>
</a>
</div>
</div>
<!-- /.empty-state-container -->
<canvas id="particles-js-canvas-el" class="particles-js-canvas-el" width="1920" height="691" style="width: 100%; height: 100%;"></canvas>
</main>
<!-- /.empty-state -->
<!-- BEGIN JS -->
<script src="static/js/particles.min.js"></script>
<script>
/* particlesJS.load(@dom-id, @path-json, @callback (optional)); */
particlesJS.load('comingsoon', 'static/json/particles-comingsoon.json');
// Set the date we're counting down to
// 设定倒计时的日期
var countDownDate = new Date('2018-10-12 15:37:25').getTime();
var countDownFormater = function(i)
{
return i < 10 ? '0' + i : i;
}
// 每1秒钟更新计数
var countDown = setInterval(function()
{
// 获得今天的日期和时间
var now = new Date().getTime();
// 得到今天找到距离现在和倒计时日期和时间
var distance = countDownDate - now;
// 时间的计算,以天,小时,分钟和秒
var days = Math.floor(distance / (1000 * 60 * 60 * 24));
var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
var seconds = Math.floor((distance % (1000 * 60)) / 1000);
// 在元素中显示id='clock'的结果
document.querySelector('#clock').innerHTML = '' + '<div class="countdown-item">' + countDownFormater(days) + ' <small>Days<\/small><\/div>' + '<div class="countdown-item">' + countDownFormater(hours) + ' <small>Hr<\/small><\/div>' + '<div class="countdown-item">' + countDownFormater(minutes) + ' <small>Min<\/small><\/div>' + '<div class="countdown-item">' + countDownFormater(seconds) + ' <small>Sec<\/small><\/div>';
// 如果倒数结束,写一些文字
if (distance < 0)
{
clearInterval(countDown);
document.querySelector('#clock').innerHTML = 'We\'ll Live Soon';
}
}, 1000);
</script>
<!-- END JS -->
<script async src="static/js/gtag.js?id=UA-116692175-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag()
{
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-116692175-1');
</script>
</body>
</html>
HTML/CSS
1
https://gitee.com/newyear_xn/admin-template-page.git
git@gitee.com:newyear_xn/admin-template-page.git
newyear_xn
admin-template-page
html-单页面多功能后台模板
master

搜索帮助