6
assets/css/icon.min.css
vendored
Normal file
2698
assets/css/style.css
Normal file
BIN
assets/images/back.jpg
Normal file
|
After Width: | Height: | Size: 92 KiB |
BIN
assets/images/back2.jpg
Normal file
|
After Width: | Height: | Size: 122 KiB |
BIN
assets/images/back3.jpg
Normal file
|
After Width: | Height: | Size: 122 KiB |
BIN
assets/images/back4.jpg
Normal file
|
After Width: | Height: | Size: 83 KiB |
BIN
assets/images/back5.jpg
Normal file
|
After Width: | Height: | Size: 121 KiB |
BIN
assets/images/back6.png
Normal file
|
After Width: | Height: | Size: 44 KiB |
BIN
assets/images/back7.png
Normal file
|
After Width: | Height: | Size: 38 KiB |
BIN
assets/images/back8.png
Normal file
|
After Width: | Height: | Size: 56 KiB |
BIN
assets/images/back9.jpg
Normal file
|
After Width: | Height: | Size: 110 KiB |
BIN
assets/images/background.jpg
Normal file
|
After Width: | Height: | Size: 442 KiB |
BIN
assets/images/background1.jpg
Normal file
|
After Width: | Height: | Size: 214 KiB |
BIN
assets/images/dummy.png
Normal file
|
After Width: | Height: | Size: 458 B |
BIN
assets/images/fav.png
Normal file
|
After Width: | Height: | Size: 765 B |
BIN
assets/images/kiwi.jpg
Normal file
|
After Width: | Height: | Size: 157 KiB |
BIN
assets/images/our2.png
Normal file
|
After Width: | Height: | Size: 20 KiB |
BIN
assets/images/our3.png
Normal file
|
After Width: | Height: | Size: 16 KiB |
BIN
assets/images/ourprice.png
Normal file
|
After Width: | Height: | Size: 21 KiB |
BIN
assets/images/paypal.png
Normal file
|
After Width: | Height: | Size: 23 KiB |
BIN
assets/images/price.jpg
Normal file
|
After Width: | Height: | Size: 37 KiB |
BIN
assets/images/price2.png
Normal file
|
After Width: | Height: | Size: 15 KiB |
BIN
assets/images/price250.png
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
assets/images/price3.png
Normal file
|
After Width: | Height: | Size: 13 KiB |
BIN
assets/images/price350.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
assets/images/price4.png
Normal file
|
After Width: | Height: | Size: 9.3 KiB |
BIN
assets/images/price450.png
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
assets/images/price50.png
Normal file
|
After Width: | Height: | Size: 742 B |
BIN
assets/images/service.png
Normal file
|
After Width: | Height: | Size: 9.8 KiB |
BIN
assets/images/service2.png
Normal file
|
After Width: | Height: | Size: 8.7 KiB |
BIN
assets/images/service3.png
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
assets/images/user/user-1.jpg
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
assets/images/user/user-10.jpg
Normal file
|
After Width: | Height: | Size: 6.5 KiB |
BIN
assets/images/user/user-2.jpg
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
assets/images/user/user-3.jpg
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
assets/images/user/user-4.jpg
Normal file
|
After Width: | Height: | Size: 8.8 KiB |
BIN
assets/images/user/user-5.jpg
Normal file
|
After Width: | Height: | Size: 29 KiB |
BIN
assets/images/user/user-7.jpg
Normal file
|
After Width: | Height: | Size: 5.2 KiB |
BIN
assets/images/user/user-8.jpg
Normal file
|
After Width: | Height: | Size: 6.2 KiB |
BIN
assets/images/user/user-9.jpg
Normal file
|
After Width: | Height: | Size: 6.5 KiB |
BIN
assets/images/visa.png
Normal file
|
After Width: | Height: | Size: 16 KiB |
8
assets/js/alpine.min.js
vendored
Normal file
20
assets/js/chart.js
Normal file
7
assets/js/chartjs-plugin-datalabels.js
Normal file
1
assets/js/collapse.js
Normal file
@@ -0,0 +1 @@
|
||||
(function(){var triggers=document.querySelectorAll("[data-collapse-target]");var collapses=document.querySelectorAll("[data-collapse]");if(triggers&&collapses){Array.from(triggers).forEach(function(trigger){return Array.from(collapses).forEach(function(collapse){if(trigger.dataset.collapseTarget===collapse.dataset.collapse){trigger.addEventListener("click",function(){if(collapse.style.height&&collapse.style.height!=="0px"){collapse.style.height=0;collapse.style.overflow="hidden";trigger.removeAttribute("open")}else{collapse.style.height="".concat(collapse.children[0].clientHeight,"px");collapse.style.overflow="visible";trigger.setAttribute("open","")}})}})})}})();
|
||||
50
assets/js/counter.js
Normal file
@@ -0,0 +1,50 @@
|
||||
document.addEventListener("DOMContentLoaded", function () {
|
||||
var elements = document.querySelectorAll(".scroll-counter")
|
||||
elements.forEach(function (item) {
|
||||
item.counterAlreadyFired = false
|
||||
item.counterSpeed = item.getAttribute("data-counter-time") / 45
|
||||
item.counterTarget = +item.innerText
|
||||
item.counterCount = 0
|
||||
item.counterStep = item.counterTarget / item.counterSpeed
|
||||
|
||||
item.updateCounter = function () {
|
||||
console.log(45);
|
||||
item.counterCount = item.counterCount + item.counterStep
|
||||
item.innerText = Math.ceil(item.counterCount)
|
||||
|
||||
if (item.counterCount < item.counterTarget) {
|
||||
setTimeout(item.updateCounter, item.counterSpeed)
|
||||
} else {
|
||||
item.innerText = item.counterTarget
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
var isElementVisible = function isElementVisible(el) {
|
||||
var scroll = window.scrollY || window.pageYOffset
|
||||
var boundsTop = el.getBoundingClientRect().top + scroll
|
||||
var viewport = {
|
||||
top: scroll,
|
||||
bottom: scroll + window.innerHeight,
|
||||
}
|
||||
var bounds = {
|
||||
top: boundsTop,
|
||||
bottom: boundsTop + el.clientHeight,
|
||||
}
|
||||
return (
|
||||
(bounds.bottom >= viewport.top && bounds.bottom <= viewport.bottom) ||
|
||||
(bounds.top <= viewport.bottom && bounds.top >= viewport.top)
|
||||
)
|
||||
}
|
||||
|
||||
var handleScroll = function handleScroll() {
|
||||
elements.forEach(function (item, id) {
|
||||
if (true === item.counterAlreadyFired) return
|
||||
if (!isElementVisible(item)) return
|
||||
item.updateCounter()
|
||||
item.counterAlreadyFired = true
|
||||
})
|
||||
}
|
||||
window.addEventListener("scroll", handleScroll)
|
||||
|
||||
})
|
||||