addet websites to test

This commit is contained in:
piecka 2025-02-28 07:43:39 +01:00
parent 78e00c2fcc
commit d8a0746af2
102 changed files with 28717 additions and 0 deletions

View file

@ -0,0 +1,46 @@
// to get current year
function getYear() {
var currentDate = new Date();
var currentYear = currentDate.getFullYear();
document.querySelector("#displayYear").innerHTML = currentYear;
}
getYear();
// client section owl carousel
$(".client_owl-carousel").owlCarousel({
loop: true,
margin: 20,
dots: false,
nav: true,
navText: [],
autoplay: true,
autoplayHoverPause: true,
navText: [
'<i class="fa fa-angle-left" aria-hidden="true"></i>',
'<i class="fa fa-angle-right" aria-hidden="true"></i>'
],
responsive: {
0: {
items: 1
},
600: {
items: 2
},
1000: {
items: 2
}
}
});
/** google_map js **/
function myMap() {
var mapProp = {
center: new google.maps.LatLng(40.712775, -74.005973),
zoom: 18,
};
var map = new google.maps.Map(document.getElementById("googleMap"), mapProp);
}