-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
57 lines (53 loc) · 1.82 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta http-equiv="refresh" content="5,url=head.php">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>广告页</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/weui.min.css">
<link rel="stylesheet" type="text/css" href="css/index.css">
<script src="js/index.js"></script>
</head>
<body style="background:-webkit-linear-gradient(right,#1E4863,#3AA4B1);">
<!-- 倒计时器 -->
<div class="row" style="margin-top:4px;">
<div class="col-xs-4"></div>
<div class="col-xs-4"></div>
<div class="col-xs-4"><a href="head.php"><p id="time">跳过广告</p></a></div>
</div>
<!-- 海贝logo图 -->
<div class="img">
<img src="img/timg.jpg" class="img-responsive" alt="Responsive image">
</div>
<!-- 页脚 -->
<footer>
<div class="page__bd page__bd_spacing">
<div class="weui-footer">
<p class="weui-footer__links">
<a style="color:#fff;" href="javascript:void(0);" class="weui-footer__link">海贝TV</a>
</p>
<p class="weui-footer__text">Copyright 海贝研发部 2006-2017</p>
</div>
</div>
</footer>
<script src="https://cdn.bootcss.com/jquery/1.12.4/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>
<script type="text/javascript">
// 计时器
window.onload = function(){
var t = 5;
setInterval(function(){
t--;
if(t>5){
t==5;
}
var time = document.getElementById('time');
time.innerHTML = '跳过广告';
},1000);
}
</script>