ajout du portfolio
This commit is contained in:
209
assets/js/main.js
Normal file
209
assets/js/main.js
Normal file
@@ -0,0 +1,209 @@
|
||||
/**
|
||||
* Template Name: Gp
|
||||
* Template URL: https://bootstrapmade.com/gp-free-multipurpose-html-bootstrap-template/
|
||||
* Updated: Jun 29 2024 with Bootstrap v5.3.3
|
||||
* Author: BootstrapMade.com
|
||||
* License: https://bootstrapmade.com/license/
|
||||
*/
|
||||
|
||||
(function() {
|
||||
"use strict";
|
||||
|
||||
/**
|
||||
* Apply .scrolled class to the body as the page is scrolled down
|
||||
*/
|
||||
function toggleScrolled() {
|
||||
const selectBody = document.querySelector('body');
|
||||
const selectHeader = document.querySelector('#header');
|
||||
if (!selectHeader.classList.contains('scroll-up-sticky') && !selectHeader.classList.contains('sticky-top') && !selectHeader.classList.contains('fixed-top')) return;
|
||||
window.scrollY > 100 ? selectBody.classList.add('scrolled') : selectBody.classList.remove('scrolled');
|
||||
}
|
||||
|
||||
document.addEventListener('scroll', toggleScrolled);
|
||||
window.addEventListener('load', toggleScrolled);
|
||||
|
||||
/**
|
||||
* Mobile nav toggle
|
||||
*/
|
||||
const mobileNavToggleBtn = document.querySelector('.mobile-nav-toggle');
|
||||
|
||||
function mobileNavToogle() {
|
||||
document.querySelector('body').classList.toggle('mobile-nav-active');
|
||||
mobileNavToggleBtn.classList.toggle('bi-list');
|
||||
mobileNavToggleBtn.classList.toggle('bi-x');
|
||||
}
|
||||
mobileNavToggleBtn.addEventListener('click', mobileNavToogle);
|
||||
|
||||
/**
|
||||
* Hide mobile nav on same-page/hash links
|
||||
*/
|
||||
document.querySelectorAll('#navmenu a').forEach(navmenu => {
|
||||
navmenu.addEventListener('click', () => {
|
||||
if (document.querySelector('.mobile-nav-active')) {
|
||||
mobileNavToogle();
|
||||
}
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
/**
|
||||
* Toggle mobile nav dropdowns
|
||||
*/
|
||||
document.querySelectorAll('.navmenu .toggle-dropdown').forEach(navmenu => {
|
||||
navmenu.addEventListener('click', function(e) {
|
||||
e.preventDefault();
|
||||
this.parentNode.classList.toggle('active');
|
||||
this.parentNode.nextElementSibling.classList.toggle('dropdown-active');
|
||||
e.stopImmediatePropagation();
|
||||
});
|
||||
});
|
||||
|
||||
/**
|
||||
* Preloader
|
||||
*/
|
||||
const preloader = document.querySelector('#preloader');
|
||||
if (preloader) {
|
||||
window.addEventListener('load', () => {
|
||||
preloader.remove();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Scroll top button
|
||||
*/
|
||||
let scrollTop = document.querySelector('.scroll-top');
|
||||
|
||||
function toggleScrollTop() {
|
||||
if (scrollTop) {
|
||||
window.scrollY > 100 ? scrollTop.classList.add('active') : scrollTop.classList.remove('active');
|
||||
}
|
||||
}
|
||||
scrollTop.addEventListener('click', (e) => {
|
||||
e.preventDefault();
|
||||
window.scrollTo({
|
||||
top: 0,
|
||||
behavior: 'smooth'
|
||||
});
|
||||
});
|
||||
|
||||
window.addEventListener('load', toggleScrollTop);
|
||||
document.addEventListener('scroll', toggleScrollTop);
|
||||
|
||||
/**
|
||||
* Animation on scroll function and init
|
||||
*/
|
||||
function aosInit() {
|
||||
AOS.init({
|
||||
duration: 0, //il été a 600 de base c'est pour que les données s'affiche direct quand je scroll
|
||||
easing: 'ease-in-out',
|
||||
once: true,
|
||||
mirror: false
|
||||
});
|
||||
}
|
||||
window.addEventListener('load', aosInit);
|
||||
|
||||
/**
|
||||
* Init swiper sliders
|
||||
*/
|
||||
function initSwiper() {
|
||||
document.querySelectorAll(".init-swiper").forEach(function(swiperElement) {
|
||||
let config = JSON.parse(
|
||||
swiperElement.querySelector(".swiper-config").innerHTML.trim()
|
||||
);
|
||||
|
||||
if (swiperElement.classList.contains("swiper-tab")) {
|
||||
initSwiperWithCustomPagination(swiperElement, config);
|
||||
} else {
|
||||
new Swiper(swiperElement, config);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
window.addEventListener("load", initSwiper);
|
||||
|
||||
/**
|
||||
* Initiate glightbox
|
||||
*/
|
||||
const glightbox = GLightbox({
|
||||
selector: '.glightbox'
|
||||
});
|
||||
|
||||
/**
|
||||
* Init isotope layout and filters
|
||||
*/
|
||||
document.querySelectorAll('.isotope-layout').forEach(function(isotopeItem) {
|
||||
let layout = isotopeItem.getAttribute('data-layout') ?? 'masonry';
|
||||
let filter = isotopeItem.getAttribute('data-default-filter') ?? '*';
|
||||
let sort = isotopeItem.getAttribute('data-sort') ?? 'original-order';
|
||||
|
||||
let initIsotope;
|
||||
imagesLoaded(isotopeItem.querySelector('.isotope-container'), function() {
|
||||
initIsotope = new Isotope(isotopeItem.querySelector('.isotope-container'), {
|
||||
itemSelector: '.isotope-item',
|
||||
layoutMode: layout,
|
||||
filter: filter,
|
||||
sortBy: sort
|
||||
});
|
||||
});
|
||||
|
||||
isotopeItem.querySelectorAll('.isotope-filters li').forEach(function(filters) {
|
||||
filters.addEventListener('click', function() {
|
||||
isotopeItem.querySelector('.isotope-filters .filter-active').classList.remove('filter-active');
|
||||
this.classList.add('filter-active');
|
||||
initIsotope.arrange({
|
||||
filter: this.getAttribute('data-filter')
|
||||
});
|
||||
if (typeof aosInit === 'function') {
|
||||
aosInit();
|
||||
}
|
||||
}, false);
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
/**
|
||||
* Initiate Pure Counter
|
||||
*/
|
||||
new PureCounter();
|
||||
|
||||
/**
|
||||
* Correct scrolling position upon page load for URLs containing hash links.
|
||||
*/
|
||||
window.addEventListener('load', function(e) {
|
||||
if (window.location.hash) {
|
||||
if (document.querySelector(window.location.hash)) {
|
||||
setTimeout(() => {
|
||||
let section = document.querySelector(window.location.hash);
|
||||
let scrollMarginTop = getComputedStyle(section).scrollMarginTop;
|
||||
window.scrollTo({
|
||||
top: section.offsetTop - parseInt(scrollMarginTop),
|
||||
behavior: 'smooth'
|
||||
});
|
||||
}, 100);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
/**
|
||||
* Navmenu Scrollspy
|
||||
*/
|
||||
let navmenulinks = document.querySelectorAll('.navmenu a');
|
||||
|
||||
function navmenuScrollspy() {
|
||||
navmenulinks.forEach(navmenulink => {
|
||||
if (!navmenulink.hash) return;
|
||||
let section = document.querySelector(navmenulink.hash);
|
||||
if (!section) return;
|
||||
let position = window.scrollY + 200;
|
||||
if (position >= section.offsetTop && position <= (section.offsetTop + section.offsetHeight)) {
|
||||
document.querySelectorAll('.navmenu a.active').forEach(link => link.classList.remove('active'));
|
||||
navmenulink.classList.add('active');
|
||||
} else {
|
||||
navmenulink.classList.remove('active');
|
||||
}
|
||||
})
|
||||
}
|
||||
window.addEventListener('load', navmenuScrollspy);
|
||||
document.addEventListener('scroll', navmenuScrollspy);
|
||||
|
||||
})();
|
101
assets/js/particles.js
Normal file
101
assets/js/particles.js
Normal file
@@ -0,0 +1,101 @@
|
||||
particlesJS('particles-js', {
|
||||
canvas: {
|
||||
color_hex_bg: '#15414e',
|
||||
opacity: 1
|
||||
},
|
||||
// particles: {
|
||||
// color_hex: '#fff',
|
||||
// opacity: 1,
|
||||
// size: 2.5,
|
||||
// size_random: true,
|
||||
// nb: 200,
|
||||
// anim: {
|
||||
// speed: 2
|
||||
// }
|
||||
// },
|
||||
particles: {
|
||||
color: '#fff',
|
||||
shape: 'circle',
|
||||
opacity: 1,
|
||||
size: 2.5,
|
||||
size_random: true,
|
||||
nb: 200,
|
||||
line_linked: {
|
||||
enable_auto: true,
|
||||
distance: 100,
|
||||
color: '#fff',
|
||||
opacity: 1,
|
||||
width: 1,
|
||||
condensed_mode: {
|
||||
enable: true,
|
||||
rotateX: 65000,
|
||||
rotateY: 65000
|
||||
}
|
||||
},
|
||||
anim: {
|
||||
enable: true,
|
||||
speed: 1
|
||||
},
|
||||
array: []
|
||||
},
|
||||
interactivity: {
|
||||
enable: true,
|
||||
mouse: {
|
||||
distance: 100
|
||||
},
|
||||
detect_on: 'canvas',
|
||||
mode: 'grab'
|
||||
},
|
||||
retina_detect: false,
|
||||
fn: {
|
||||
vendors:{
|
||||
interactivity: {}
|
||||
}
|
||||
}
|
||||
// retina_detect: true
|
||||
});
|
||||
|
||||
|
||||
|
||||
|
||||
// <style type="text/css">
|
||||
// particles: {
|
||||
// color: '#fff',
|
||||
// shape: 'circle',
|
||||
// opacity: 1,
|
||||
// size: 2.5,
|
||||
// size_random: true,
|
||||
// nb: 200,
|
||||
// line_linked: {
|
||||
// enable_auto: true,
|
||||
// distance: 100,
|
||||
// color: '#fff',
|
||||
// opacity: 1,
|
||||
// width: 1,
|
||||
// condensed_mode: {
|
||||
// enable: true,
|
||||
// rotateX: 65000,
|
||||
// rotateY: 65000
|
||||
// }
|
||||
// },
|
||||
// anim: {
|
||||
// enable: true,
|
||||
// speed: 1
|
||||
// },
|
||||
// array: []
|
||||
// },
|
||||
// interactivity: {
|
||||
// enable: true,
|
||||
// mouse: {
|
||||
// distance: 100
|
||||
// },
|
||||
// detect_on: 'canvas',
|
||||
// mode: 'grab'
|
||||
// },
|
||||
// retina_detect: false,
|
||||
// fn: {
|
||||
// vendors:{
|
||||
// interactivity: {}
|
||||
// }
|
||||
// }
|
||||
// </style>
|
Reference in New Issue
Block a user