addet websites to test
This commit is contained in:
parent
78e00c2fcc
commit
d8a0746af2
102 changed files with 28717 additions and 0 deletions
46
websites/1/finexo-html/js/custom.js
Normal file
46
websites/1/finexo-html/js/custom.js
Normal 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);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue