qmodel/qmodel-vue-master/index.html

35 lines
1.2 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
<!-- 页面增加icon图标 -->
<link
rel="shortcut icon"
type="image/x-icon"
href="./favicon.ico"
rel="external nofollow"
/>
<title>后端管理平台</title>
<link
rel="stylesheet"
href="//at.alicdn.com/t/c/font_3631821_5hypdnl1j8a.css"
/>
<link rel="stylesheet" href="/Cesium/Widgets/widgets.css" />
</head>
<body>
<!-- built files will be auto injected -->
<div id="app"></div>
<script type="x-shader/x-vertex" id="vertexshader">
varying vec2 vUv; void main() { vUv = uv; gl_Position = projectionMatrix * modelViewMatrix * vec4( position, 1.0 ); }
</script>
<script type="x-shader/x-fragment" id="fragmentshader">
uniform sampler2D baseTexture; uniform sampler2D bloomTexture; varying vec2 vUv; void main() { gl_FragColor = ( texture2D( baseTexture, vUv ) + vec4( 1.0 ) * texture2D( bloomTexture, vUv ) ); }
</script>
<script src="./static/qmodel/qmodel.js"></script>
<script src="./static/Cesium/Cesium.js"></script>
</body>
</html>