forked from wxyangjie/A-Frame_WebAR
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
89 lines (82 loc) · 4.47 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!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">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="bootstrap-4.3.1-dist\css\bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="bootstrap-4.3.1-dist\js\bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
<title>《移动网络优化》AR课件资源</title>
</head>
<body>
<header>
<div class="collapse bg-light" id="navbarHeader">
<div class="container">
<div class="row">
<div class="col-sm-8 col-md-7 py-4">
<h4 class="text-black">关于</h4>
<p class="text-muted">《移动网络优化》AR课件资源</p>
</div>
<div class="col-sm-4 offset-md-1 py-4">
<h4 class="text-black">反馈邮箱</h4>
<ul class="list-unstyled">
<li><p class="text-muted">[email protected]</p></li>
</ul>
</div>
</div>
</div>
</div>
<div class="navbar navbar-dark" style="background-color: #010101;">
<div class="container d-flex justify-content-between">
<a href="#" class="navbar-brand d-flex align-items-center">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" aria-hidden="true" class="mr-2" viewBox="0 0 24 24" focusable="false"><path d="M23 19a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h4l2-3h6l2 3h4a2 2 0 0 1 2 2z"/><circle cx="12" cy="13" r="4"/></svg>
<strong>AR课件</strong>
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarHeader" aria-controls="navbarHeader" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
</div>
</div>
</header>
<main role="main">
<section class="jumbotron jumbotron-fluid text-center bg-light">
<div class="container">
<h4 class="jumbotron-heading">为保证最佳效果,请在手机上使用Safari/Chrome浏览器</h4>
<p class="lead text-muted">支持安卓、苹果、Window Phone;电脑端使用需确保摄像头可以正常使用。</p>
</div>
</section>
<div class="album py-5 bg-light">
<div class="container">
<div class="row">
<div class="col-md-4">
<div class="card mb-4 shadow-sm">
<img src="images\1.png" class="card-img-top" alt="images\1.png">
<div class="card-body">
<!-- <p class="card-text">电磁波经不同路径传播使得各分量场到达接收端时间不同。</p> -->
<div class="d-flex justify-content-center">
<a class="btn btn-sm btn-outline-dark" href="multipath-effect.html" role="button" target="_blank">在AR中展示 </a>
</div>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card mb-4 shadow-sm">
<img src="images\2.png" class="card-img-top" alt="images\2.png">
<div class="card-body">
<!-- <p class="card-text">物体辐射的波长因为波源和观测者的相对运动而产生变化。</p> -->
<div class="d-flex justify-content-center">
<a class="btn btn-sm btn-outline-dark" href="Doppler-effect.html" role="button" target="_blank">在AR中展示 </a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>