You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
70 lines
2.2 KiB
70 lines
2.2 KiB
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<title>3D MODELS SYSTEM - SHARE</title>
|
|
<!-- jquery -->
|
|
<script src="https://cdn.bootcss.com/jquery/3.3.1/jquery.js"></script>
|
|
<!-- three.js -->
|
|
<script src="/js/three/three.js"></script>
|
|
<script src="/js/three/OrbitControls.js"></script>
|
|
<!-- 加载器 -->
|
|
<script src="/js/three/OBJLoader.js"></script>
|
|
<script src="/js/three/FBXLoader.js"></script>
|
|
<script src="/js/three/TGALoader.js"></script>
|
|
<script src='/js/three/inflate.min.js'></script>
|
|
<!-- ZUI -->
|
|
<link rel="stylesheet" href="https://cdn.bootcss.com/zui/1.8.1/css/zui.min.css">
|
|
<script src="https://cdn.bootcss.com/zui/1.8.1/js/zui.min.js"></script>
|
|
<style>
|
|
* {
|
|
margin: 0px;
|
|
padding: 0px;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
}
|
|
|
|
#viewField {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<!-- threejs容器 -->
|
|
<div id="viewField">
|
|
|
|
</div>
|
|
|
|
<!-- 模态框:访问密码 -->
|
|
<div class="modal fade" id="visitPasswordModal">
|
|
<div class="modal-dialog modal-sm">
|
|
<div class="modal-content">
|
|
<div class="modal-header">
|
|
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span
|
|
class="sr-only">关闭</span></button>
|
|
<h4 class="modal-title">访问密码</h4>
|
|
</div>
|
|
<div class="modal-body">
|
|
<input type="password" class="form-control" id="visitPassword" placeholder="请输入访问密码">
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button type="button" class="btn btn-default" data-dismiss="modal">关闭</button>
|
|
<button type="button" class="btn btn-primary" id="visitBtn">确定</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script src="/js/share.js"></script>
|
|
</body>
|
|
|
|
</html> |