-
Notifications
You must be signed in to change notification settings - Fork 11
/
beta.html
140 lines (120 loc) · 5.06 KB
/
beta.html
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<!doctype html>
<html class="no-js" lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="images/favicon/favicon.png" rel="shortcut icon">
<title>Zom Mobile Messenger</title>
<link rel="stylesheet" href="css/foundation.min.css">
<link rel="stylesheet" href="css/app.css">
<link href="css/zmcs.css" rel="stylesheet" type="text/css">
<link href="css/animate.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="title-bar" data-responsive-toggle="zomtop" data-hide-for="medium">
<button class="menu-icon" type="button" data-toggle></button>
<div class="title-bar-title">Menu</div>
</div>
<div class="top-bar" id="zomtop" >
<div class="top-bar-left logo">
<img src="images/zom1.png" width="100" height="auto" alt="zom logo"></div>
<div class="top-bar-right">
<ul class="dropdown vertical medium-horizontal menu" data-dropdown-menu>
<li class="feature"><a href="#download">Download</a></li>
<li><a href="#features">Features</a></li>
<li><a href="#faq">FAQ</a></li>
<li><a href="#support">Support</a></li>
<li><a>Language</a>
<ul class="menu">
<li><a href="zomtibetan.html">Tibetan བོད་ཡིག</a></li>
<li><a href="zomchinese.html">Chinese 中文</a></li>
<li><a href="index.html">English</a></li>
<li><a href="zomfrench.html">French</a></li>
<li><a href="zomja.html">Japanese 日本語</a></li>
<li><a href="zompersian.html">Persian</a></li>
</ul>
<li><a href="zomabout.html">About Us</a></li>
</li>
</ul>
</div>
</div>
<div class="back-top">
<div class="row">
<div class="small-12 medium-6 large-5 columns is-animating" >
<p class="bein animated bounceIn" >Beta</p>
<p class="thezom animated zoomInDown">Zom</p>
<p class="white animated fadeInDown">Thank you for taking time to test beta Zom. Click on the links below to get the invitation!</p>
<!--<p class="download animated bounceInUp"><a href="#download">Download</a></p>-->
<div class="small-12 columns"> <a href="https://testflight.apple.com/join/w1y6QRxa" target="_blank"> <img src="images/macdown.png" alt="download zom"><br><font color=white><u>iOS TestFlight Invitation Link</u></font></a><br><br></div>
<div class="small-12 columns"><a href="https://zom.im/download/zombeta.apk" target="_blank"><img src="images/apkdown.png" alt="download zom"></br><font color=white>Download Zom 2.0.0 BETA APK</font></a></div>
<div class="small-12 columns"> <a href="https://play.google.com/apps/testing/im.zom.messenger" target="_blank"><br/><br/> <font color=white>(You can also optionally join the beta to get automatic updates:<br/> <u>Play Store Beta Invitation Link</u>)</font><br><br></a></div>
</div>
<div class="small-12 medium-6 large-7 columns">
<img src="images/sl2.png" width="100%" ></div>
</div>
</div>
<div class="b3">
<a name="support"></a>
<div class="row">
<h2>Support</h2>
<div class="small-12 large-4 columns"><p>Contact the Zom support team<br>
E-mail us: <a href="mailto:[email protected]?Subject=Zom%20Support">[email protected]</a></p></div>
<div class="small-12 large-4 columns">
</div>
<div class="small-12 large-4 columns"><p>Or <br>
read our <a href="#faq">Frequently Asked Questions!</a></p></div>
</div>
</div>
<div class="cont-cel">
<div class="bottomchar"></div>
<div class="row centered">
<p> </p>
<p>Copyright © 2018 <span class="contfeat">Zom</span>. All screenshots © their respective owners. <br>
<a href="/privacy">Privacy Policy<a/></p>
</div>
</div>
<script src="js/vendor/jquery.js"></script>
<script src="js/vendor/what-input.js"></script>
<script src="js/vendor/foundation.js"></script>
<script src="js/jquery.viewportchecker.js"></script>
<script>
$(function() {
$('a[href*="#"]:not([href="#"])').click(function() {
if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {
var target = $(this.hash);
target = target.length ? target : $('[name=' + this.hash.slice(1) +']');
if (target.length) {
$('html, body').animate({
scrollTop: target.offset().top
}, 1000);
return false;
}
}
});
});
</script>
<script>
jQuery(document).ready(function() {
var language = navigator.languages && navigator.languages[0] ||
navigator.language ||
navigator.userLanguage;
if (language.includes("bo"))
window.location.href = "zomtibetan.html";
else if (language.includes("zh"))
window.location.href = "zomchinese.html";
/**
jQuery('.vis').addClass("hidden").viewportChecker({
classToAdd: 'visible animated bounceInUp',
offset: 100
});
jQuery('.vis2').addClass("hidden").viewportChecker({
classToAdd: 'visible animated zoomIn',
offset: 100
});
**/
});
</script>
<script src="js/app.js"></script>
</body>
</html>