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
141
|
<!DOCTYPE html> <html lang="en-HK" prefix="og: http://ogp.me/ns#">
<head> <title>會員 - 慧妍雅集, WAI YIN ASSOCIATION </title>
<!-- css --> <?php include 'inc/headlinks.php'; ?> <!-- js --> <?php include 'inc/link-js.php'; ?> </head>
<body>
<!-- header --> <?php include 'inc/navbar.php'; ?> <!-- end of header-->
<!-- breadcrumb -->
<div class="breadcrumb" style="background-image:url(../../assets/images/breadcrumbbg.jpg);">
<div class="breadcrumbWrapper text-center">
<p class="breadcrumbTitle mb-2 pt-4 h3 text-uppercase whiteFont">會員 </p>
<div class="breadcrumbLink whiteFont">
<a href="index.php" class="whiteFont"> 首頁</a> / <span class="whiteFont">會員 </span>
</div>
</div>
</div>
<section class="mainWrap">
<div class="container"> <div class="row justify-content-center memberRow">
</div>
</div> </section>
<?php /*?><section class="mainSmallWrapper"> <p class="h1 blueFont">Partner</P> <p class="text-justify mb-4">We have the privilege of working with a diverse range of organisations and enterprises. We view our clients and sponsors as our partners and work collaboratively with them to achieve results they can measure. </p> <div class="swiper-container"> <div class="swiper-wrapper"> <div class="swiper-slide"> <img src="/assets/images/logo.png" class="img-fluid"></div> <div class="swiper-slide"><img src="/assets/images/logo.png" class="img-fluid"></div> <div class="swiper-slide"><img src="/assets/images/logo.png" class="img-fluid"></div> <div class="swiper-slide"><img src="/assets/images/logo.png" class="img-fluid"></div> <div class="swiper-slide"><img src="/assets/images/logo.png" class="img-fluid"></div> <div class="swiper-slide"><img src="/assets/images/logo.png" class="img-fluid"></div> <div class="swiper-slide"><img src="/assets/images/logo.png" class="img-fluid"></div> <div class="swiper-slide"><img src="/assets/images/logo.png" class="img-fluid"></div> <div class="swiper-slide"><img src="/assets/images/logo.png" class="img-fluid"></div> <div class="swiper-slide"><img src="/assets/images/logo.png" class="img-fluid"></div> </div> </div> </section><?php */ ?> <!-- end #section -->
<!-- footer --> <?php include 'inc/footer.php'; ?>
<script> $(function() { $.ajax({ url: "../../assets/json/member.json?2391", type: "get",
data: {}, contentType: "application/json; charset=utf-8", dataType: "json", cache: false,
success: function(result) { let data = result.tc;
$.each(data, function(index, item) { $(`<div class="col-xl-2dot4 col-6 col-lg-3 col-sm-4"> <div class="imgCard"> <div class="imgCardItem boxshardow"> <img src="../../assets/images/member/${item.img}" class="over" alt="icon01">
</div> <div class="imgCardMedia"> <a href="${item.fb}" target="_blank" title="facebook" class="imgCardMediaBtn boxshardow ${item.fbClass}"><i class="fab fa-facebook-square"></i></a> <a href="${item.wb}" title="weibo" class="imgCardMediaBtn boxshardow ${item.wbClass}"><i class="fab fa-weibo"></i></a> <a href="${item.ig}" title="Ig" class="imgCardMediaBtn boxshardow ${item.igClass}"><i class="fab fa-instagram"></i></a> </div>
</div> <p class="imgCardName">${item.name}</p> </div>`).appendTo('.memberRow'); });
}, error: function(xhr, status, errorThrown) { console.log(errorThrown + "\n" + status + "\n" + xhr.statusTex); }, }); }); </script>
</body>
</html>
|