OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
reader
/
galaxy
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
11/28/2024 11:03:35 AM
rwxrwxr-x
📁
CSS
-
08/26/2024 06:19:06 AM
rwxr-xr-x
📄
Health-risks.html
11.73 KB
08/26/2024 06:19:06 AM
rw-r--r--
📄
about.html
3.68 KB
08/26/2024 06:19:06 AM
rw-r--r--
📄
contect.html
4.27 KB
08/26/2024 06:19:06 AM
rw-r--r--
📄
financial.html
4.22 KB
08/26/2024 06:19:06 AM
rw-r--r--
📁
images
-
08/26/2024 06:22:19 AM
rwxr-xr-x
📄
index.html
18.88 KB
08/26/2024 06:19:06 AM
rw-r--r--
📁
js
-
08/26/2024 06:22:21 AM
rwxr-xr-x
📄
licpage.html
5.61 KB
08/26/2024 06:19:06 AM
rw-r--r--
📄
life_risk.html
8.77 KB
08/26/2024 06:19:06 AM
rw-r--r--
📄
script.js
1.97 KB
08/26/2024 06:19:06 AM
rw-r--r--
📄
styles.css
19.01 KB
08/26/2024 06:19:06 AM
rw-r--r--
📄
testimonial.html
7.37 KB
08/26/2024 06:19:06 AM
rw-r--r--
📄
text.html
4.27 KB
08/26/2024 06:19:06 AM
rw-r--r--
📄
vehicle-risk.html
9.8 KB
08/26/2024 06:19:06 AM
rw-r--r--
Editing: script.js
Close
document.addEventListener("DOMContentLoaded", function () { // Initialize the carousel var myCarousel = document.getElementById("carouselExampleIndicators"); var carousel = new bootstrap.Carousel(myCarousel, { interval: 5000, // Adjust the interval as needed }); // Optional: Add custom JavaScript for additional functionalities // Example: Pause on hover myCarousel.addEventListener("mouseover", function () { carousel.pause(); }); myCarousel.addEventListener("mouseleave", function () { carousel.cycle(); }); // Example: Smooth scrolling to sections function scrollToSection(sectionId) { var section = document.getElementById(sectionId); section.scrollIntoView({ behavior: "smooth" }); } }); function toggleMenu() { var navLinks = document.getElementById('nav-links'); if (navLinks.classList.contains('show')) { navLinks.classList.remove('show'); } else { navLinks.classList.add('show'); } } let slideIndex = 0; showSlides(); function showSlides() { let slides = document.getElementsByClassName("mySlides"); for (let i = 0; i < slides.length; i++) { slides[i].style.display = "none"; } slideIndex++; if (slideIndex > slides.length) { slideIndex = 1; } slides[slideIndex-1].style.display = "block"; setTimeout(showSlides, 2000); // Change image every 2 seconds } // window.onscroll = function () { // const header = document.getElementById("header"); // if (window.scrollY > 50) { // header.classList.add("scrolled"); // } else { // header.classList.remove("scrolled"); // } // }; // function toggleMenu() { // const nav = document.querySelector("nav"); // nav.classList.toggle("active"); // } // var swiper = new Swiper(".gallery-slider", { // slidesPerView: "auto", // spaceBetween: 30, // pagination: { // el: ".swiper-pagination", // clickable: true, // }, // });