-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.html
44 lines (44 loc) · 1.53 KB
/
footer.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
<footer class="footer flex center-85">
<div class="footer-left">
<img src="./images/Brand.png" >
<div class="">© 2021 Bazhuayu. All rights reserved.</div>
</div>
<div class="footer-right flex">
<div class="footer-right-links flex">
<span class="language-tc">常用鏈接</span>
<!--<a href="">White Paper</a>-->
<a class="language-tc" href="https://bazhuayuhelp.zendesk.com/hc/zh-hk" target="_blank">常見問題</a>
<a class="language-tc" href="agreement.html">用户协议</a>
<a class="language-tc" href="privacy.html">隱私政策</a>
</div>
<div class="footer-right-follow flex">
<span class="language-tc">關注我們</span>
<div class="flex followUrl">
<!-- <a class="weiboUrl" href="" target="_blank">微博</a> -->
<!-- <a class="twitterUrl" style="width:100%" href="" target="_blank">推特</a> -->
<a class="qrCode" style="width:100%">公眾號</a>
<a class="telegramUrl" href="" target="_blank">資訊</a>
</div>
<div class="wx-code">
<div class="wx-box">
<p class="wx-close"></p>
<div class="wx-pic"><img class="code-pic" src="" alt=""></div>
</div>
</div>
</div>
<div class="footer-right-follow flex">
<span class="language-tc">聯系我們</span>
<a class="language-tc" style="color: rgba(255, 255, 255, 0.5);">[email protected]</a>
</div>
</div>
</footer>
<script>
$(function(){
$(".qrCode").click(function(){
$(".wx-code").css("display","block");
});
$(".wx-close").click(function(){
$(".wx-code").css("display","none");
});
})
</script>