Skip to content
  • P
    Projects
  • G
    Groups
  • S
    Snippets
  • Help

libai / Static

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Members
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • Static
  • app
  • tip.html
Find file
BlameHistoryPermalink
  • dabai's avatar
    xx · d1d96f94
    dabai committed 3 years ago
    d1d96f94
tip.html 2.25 KB
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
<!DOCTYPE html>
<html>

	<head>


		<meta charset="utf-8" />
		<meta name="viewport" content="width=device-width,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no" />
		<meta name="apple-mobile-web-app-capable" content="yes">
		<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
		<meta content="telephone=no" name="format-detection">
		<meta name="wap-font-scale" content="no">
		<title>tip</title>
		<link rel="stylesheet" href="https://app.ixiulive.com/static/css/reset2.css" />
		<link rel="stylesheet" href="https://app.ixiulive.com/static/css/common.css" />
		<script type="text/javascript" src="https://app.ixiulive.com/static/js/fsize.js"></script>
		<style type="text/css">

			body,
			html {
				line-height: 1.2;
				 font-family: -apple-system,BlinkMacSystemFont,Helvetica Neue,PingFang SC,Microsoft YaHei,Source Han Sans SC,Noto Sans CJK SC,WenQuanYi Micro Hei,sans-serif;
				background-color: #11121A;
			}
			.main{
				width: 10rem;
				position: relative;
				font-size: 0;
				margin: 0 auto;
				overflow: hidden;
				background-color: #11121A;
				height: 100%;
			}
			.main p{
				font-size: 0.453rem;
				color: #FFF;
				width: 9rem;
				position: absolute;
				top: 50%;
				left: .5rem;
				transform: translate(0,-50%);
				-webkit-transform: translate(0,-50%);
				-moz-transform: translate(0,-50%);
				-ms-transform: translate(0,-50%);
				text-align: center;
			}
		</style>
	</head>

	<body>

		<div class="main">
			<p></p>
		</div>
		<script type="text/javascript">
			var $p = document.getElementsByTagName('p')[0];
			if(url_get_params().lang == 2 || url_get_params().lang == 0){
				$p.innerHTML = '由於您當前版本過低,剛錯過了用戶的禮物,請升級到最新版本。';
			} else {
				$p.innerHTML ='You just missed gifts from users because of low version, please update the application to the latest version.';
			}
			function url_get_params() {
				var url = location.href;
				var theRequest = new Object();
				if(url.indexOf("?") != -1) {
					var str = url.substr(url.indexOf("?") + 1);
					strs = str.split("&");
					for(var i = 0; i < strs.length; i++) {
						theRequest[strs[i].split("=")[0]] = unescape(strs[i].split("=")[1]);
					}
				}
				return theRequest;
			}
		</script>

	</body>
</html>