-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwhatfinger.js
More file actions
47 lines (45 loc) · 2.04 KB
/
whatfinger.js
File metadata and controls
47 lines (45 loc) · 2.04 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
class Whatfinger {
constructor() {
this.el = document.getElementById("whatfinger");
this.el.innerHTML = this.render();
}
render = () => {
return `<div class="container">
<div class="row">
<!-- Counter Item -->
<div class="col-md-6 col-lg-3 col-xs-12 work-counter-widget text-center">
<div class="counter wow fadeInRight" data-wow-delay="0.3s">
<div class="icon"><i class="lni-map"></i></div>
<p class="titr">مکان های برگزاری</p>
<span>در حال حاضر شیراز</span>
</div>
</div>
<!-- Counter Item -->
<div class="col-md-6 col-lg-3 col-xs-12 work-counter-widget text-center">
<div class="counter wow fadeInRight" data-wow-delay="0.6s">
<div class="icon"><i class="lni-timer"></i></div>
<p class="titr">جمعه های هر هفته فعال</p>
<span>زمان اجرا در فصل های مختلف متغاوت است</span>
</div>
</div>
<!-- Counter Item -->
<div class="col-md-6 col-lg-3 col-xs-12 work-counter-widget text-center">
<div class="counter wow fadeInRight" data-wow-delay="0.9s">
<div class="icon"><i class="lni-users"></i></div>
<p class="titr">۵۰ عدد ظرفیت حضور</p>
<span>ظرفیت محدود جهت ارتقای کیفیت برگزاری هفتگی</span>
</div>
</div>
<!-- Counter Item -->
<div class="col-md-6 col-lg-3 col-xs-12 work-counter-widget text-center">
<div class="counter wow fadeInRight" data-wow-delay="1.2s">
<div class="icon"><i class="lni-coffee-cup"></i></div>
<p class="titr">شبکه سازی با طعم کد و کافی</p>
<span>اختصاص کافی شاپ در برنامه اجرایی</span>
</div>
</div>
</div>
</div>`;
}
}
new Whatfinger()