File: //home/burhbrzf/burhanrentacar.net/js__8ac24d2/main.js
(function ($) {
"use strict";
// Dropdown on mouse hover
$(document).ready(function () {
function toggleNavbarMethod() {
if ($(window).width() > 992) {
$('.navbar .dropdown').on('mouseover', function () {
$('.dropdown-toggle', this).trigger('click');
}).on('mouseout', function () {
$('.dropdown-toggle', this).trigger('click').blur();
});
} else {
$('.navbar .dropdown').off('mouseover').off('mouseout');
}
}
toggleNavbarMethod();
$(window).resize(toggleNavbarMethod);
});
// Date and time picker
$('.date').datetimepicker({
format: 'L'
});
$('.time').datetimepicker({
format: 'LT'
});
// Back to top button
$(window).scroll(function () {
if ($(this).scrollTop() > 100) {
$('.back-to-top').fadeIn('slow');
} else {
$('.back-to-top').fadeOut('slow');
}
});
$('.back-to-top').click(function () {
$('html, body').animate({scrollTop: 0}, 1500, 'easeInOutExpo');
return false;
});
// Team carousel
$(".team-carousel, .related-carousel").owlCarousel({
autoplay: true,
smartSpeed: 1000,
center: true,
margin: 30,
dots: false,
loop: true,
nav : 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
},
576:{
items:1
},
768:{
items:2
},
992:{
items:3
}
}
});
// Testimonials carousel
$(".testimonial-carousel").owlCarousel({
autoplay: true,
smartSpeed: 1500,
margin: 30,
dots: true,
loop: true,
center: true,
responsive: {
0:{
items:1
},
576:{
items:1
},
768:{
items:2
},
992:{
items:3
}
}
});
// Vendor carousel
$('.vendor-carousel').owlCarousel({
loop: true,
margin: 30,
dots: true,
loop: true,
center: true,
autoplay: true,
smartSpeed: 1000,
responsive: {
0:{
items:2
},
576:{
items:3
},
768:{
items:4
},
992:{
items:5
},
1200:{
items:6
}
}
});
})(jQuery);
// submit format
function gotowhatsapp(){
var slocation = document.getElementById("slocation").value;
var elocation = document.getElementById("elocation").value;
var name = document.getElementById("name").value;
var email = document.getElementById("email").value;
var address = document.getElementById("address").value;
var number = document.getElementById("number").value;
var message = document.getElementById("message").value;
var url="https://api.whatsapp.com/send?phone=+923212098809&text=" + "Start Location: " + slocation + "%0a" +
"End Location: " + elocation + "%0a" + "Name: " + name + "%0a" + "Email: " + email + "%0a" + "Address: " + address + "%0a" + "Mobile Number: " + number + "%0a" +
"Message: " + message + "%0a";
window.open(url, '_blank').focus();
}
//blog start
(function ($) {
"use strict";
// Tranding carousel
$(".tranding-carousel").owlCarousel({
autoplay: true,
smartSpeed: 2000,
items: 1,
dots: false,
loop: true,
nav : true,
navText : [
'<i class="fa fa-angle-left"></i>',
'<i class="fa fa-angle-right"></i>'
]
});
// Carousel item 1
$(".carousel-item-1").owlCarousel({
autoplay: true,
smartSpeed: 1500,
items: 1,
dots: false,
loop: true,
nav : true,
navText : [
'<i class="fa fa-angle-left" aria-hidden="true"></i>',
'<i class="fa fa-angle-right" aria-hidden="true"></i>'
]
});
// Carousel item 2
$(".carousel-item-2").owlCarousel({
autoplay: true,
smartSpeed: 1000,
margin: 30,
dots: false,
loop: true,
nav : 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
},
576:{
items:1
},
768:{
items:2
}
}
});
// Carousel item 3
$(".carousel-item-3").owlCarousel({
autoplay: true,
smartSpeed: 1000,
margin: 30,
dots: false,
loop: true,
nav : 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
},
576:{
items:1
},
768:{
items:2
},
992:{
items:3
}
}
});
// Carousel item 4
$(".carousel-item-4").owlCarousel({
autoplay: true,
smartSpeed: 1000,
margin: 30,
dots: false,
loop: true,
nav : 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
},
576:{
items:1
},
768:{
items:2
},
992:{
items:3
},
1200:{
items:4
}
}
});
})(jQuery);
// blog carousel col8
jQuery(document).ready(function($) {
$('.fadeOut').owlCarousel({
items: 1,
animateOut: 'fadeOut',
animateIn: 'fadeIn',
loop: true,
margin: 10,
nav: true,
dots: false
});
});
// feature slider Start
$('.owl-carousel').owlCarousel({
loop: true,
margin: 10,
nav: true,
navText: [
"<i class='fa fa-caret-left'></i>",
"<i class='fa fa-caret-right'></i>"
],
autoplay: true,
autoplayHoverPause: true,
responsive: {
0: {
items: 1
},
600: {
items: 3
},
1000: {
items: 5
}
}
})