NGToolsCSharp/NGTools/obj/Release/Package/PackageTmp/Scripts/MUI/examples/tab-webview-subpage-about.html
2024-09-13 16:44:30 +08:00

38 lines
1.2 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Hello MUI</title>
<meta name="viewport" content="width=device-width, initial-scale=1,maximum-scale=1,user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<link rel="stylesheet" href="../css/mui.min.css">
<style>
html,body {
background-color: #efeff4;
}
.title{
margin: 20px 15px 10px;
color: #6d6d72;
font-size: 15px;
}
</style>
</head>
<body>
<div class="mui-content">
<div class="title">
<p>这是webview模式选项卡的第1个子页面</p>
<p>何谓webview模式其实就是每个选项卡内容都是一个独立的webview彼此之间互相独立、互不影响
对于较为复杂的业务系统,推荐使用该模式。</p>
<p>基于webview模式的选项卡支持原生加速的下拉刷新点击第二个选项卡“消息”切换选项卡体验下拉刷新</p>
</div>
</div>
</body>
<script src="../js/mui.min.js"></script>
<script>
mui.init({
swipeBack:true //启用右滑关闭功能
});
</script>
</html>