bmh_cesium/public/widgets/_example_2win/viewRight.html

93 lines
2.9 KiB
HTML
Raw Normal View History

2025-03-09 23:23:50 +00:00
<!DOCTYPE html>
<html class="no-js css-menubar" lang="zh-cn">
<head>
<title>弹窗子页面</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<!-- 移动设备 viewport -->
<meta name="viewport" content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no,minimal-ui">
<!-- 360浏览器默认使用Webkit内核 -->
<meta name="renderer" content="webkit">
<!-- Chrome浏览器添加桌面快捷方式安卓 -->
<link rel="icon" type="image/png" href="../../img/favicon/favicon.png">
<meta name="mobile-web-app-capable" content="yes">
<!-- Safari浏览器添加到主屏幕IOS -->
<link rel="icon" sizes="192x192" href="img/favicon/apple-touch-icon.png">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<!-- Win8标题栏及ICON图标 -->
<link rel="apple-touch-icon-precomposed" href="../../img/favicon/apple-touch-icon.png">
<meta name="msapplication-TileImage" content="../../img/favicon/app-icon72x72@2x.png">
<meta name="msapplication-TileColor" content="#62a8ea">
<!-- 第3方lib引入 -->
<script type="text/javascript" src="../../lib/include-lib.js?time=20200510" libpath="../../lib/"
include="jquery,jquery.mCustomScrollbar,bootstrap,echarts,admui-frame"></script>
<link href="../../css/widget-win.css" rel="stylesheet" />
</head>
<body style="padding:5px;text-align:center;">
<div>2个弹窗交互示例</div>
<div class="btn-group" role="group" style="margin-bottom:10px;">
<button id="btn1" type="button" class="btn btn-primary btn-sm active">
视角切换到南京
</button>
<button id="btn2" type="button" class="btn btn-primary btn-sm">
视角切换到合肥
</button>
<button id="btn3" type="button" class="btn btn-primary btn-sm">
调用左侧面板
</button>
</div>
<div id="lblName">viewRight</div>
<!--页面js-->
<script>
var thisWidget;
//当前页面业务
function initWidgetView(_thisWidget) {
thisWidget = _thisWidget;
if (thisWidget.config && thisWidget.config.style) {//适应不同样式
$("body").addClass(thisWidget.config.style);
}
$("#btn1").click(function () {
thisWidget.testCenterAt1();
});
$("#btn2").click(function () {
thisWidget.testCenterAt2();
});
$("#btn3").click(function () {
thisWidget.viewWindowLeft.testShowText('我是从右侧面板调用的' + new Date());
});
}
function testShowText(text) {
$("#lblName").html(text);
}
</script>
</body>
</html>