Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
salmanzego authored Nov 19, 2023
1 parent ad58339 commit d1ef2b6
Show file tree
Hide file tree
Showing 21 changed files with 1,236 additions and 0 deletions.
799 changes: 799 additions & 0 deletions assets/css/style.css

Large diffs are not rendered by default.

Binary file added assets/images/about1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/client1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/client2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/client3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/client4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/client5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/client6.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/hero_bg.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/logo_black.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/logo_white.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/pattern-dot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/slider1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/slider2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/slider3.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/slider4.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/slider5.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/slider6.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/testimonial1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
97 changes: 97 additions & 0 deletions assets/js/script.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,97 @@
$('#hamburger').click(() => {
document.getElementById('sidebar_toggle').classList.toggle('open');
document.getElementById('sidebar').classList.toggle('open');
});

// var count = 1, prev;

// $('#prevBtn').click(() => {
// prev = count;
// if (count == 1) {
// count = 3;
// } else {
// count--;
// }
// slideFn();
// });

// $('#nxtBtn').click(() => {
// prev = count
// if (count == 3) {
// count = 1;
// } else {
// count++;
// }
// slideFn();
// });

// slideFn = () => {
// // document.getElementById('count').innerHTML = `${count+1} ` ;
// // document.getElementById(`img_slider${prev}`).classList.toggle('active');
// // document.getElementById(`img_slider${count}`).classList.toggle('active');
// document.getElementById('pj_slider_wrapper').style.transform = `translate3d(${-630 * count}px,0px,0px)`;
// }

window.addEventListener('scroll',()=>{
if (document.documentElement.scrollTop > 0) {
document.getElementById('navbar').style.boxShadow = 'rgba(0, 0, 0, 0.16) -2px 1px 3px';
document.getElementById('navbar').style.backgroundColor = '#000';
}else{
document.getElementById('navbar').style.boxShadow = 'none';
document.getElementById('navbar').style.backgroundColor = 'transparent';

}
})


jQuery(document).ready(function ($) {
"use strict";
// TESTIMONIALS CAROUSEL HOOK
$('.testimonial-owl-carousel').owlCarousel({
loop: true,
center: true,
items: 4,
margin: 0,
autoplay: true,
dots: true,
autoplayTimeout: 8500,
smartSpeed: 450,
responsive: {
0: {
items: 1
},
768: {
items: 1
},
1170: {
items: 3
}
}
});
});

jQuery(document).ready(function ($) {
"use strict";
// TESTIMONIALS CAROUSEL HOOK
$('.client-owl-carousel').owlCarousel({
loop: true,
center: true,
items: 6,
margin: 0,
autoplay: true,
dots: true,
autoplayTimeout: 8500,
smartSpeed: 450,
responsive: {
0: {
items: 3
},
768: {
items: 3
},
1170: {
items: 6
}
}
});
});
340 changes: 340 additions & 0 deletions index.html

Large diffs are not rendered by default.

0 comments on commit d1ef2b6

Please sign in to comment.