This project implements interactive features for an FAQ section, a video scroller with background highlights, and a responsive video loader using plain JavaScript. Additionally, it includes a Swiper
component with a coverflow effect, and horizontal scroll animations.
-
FAQ Toggle:
- Click on FAQ headers to show or hide content under each section.
- Adds an
active
class to highlight selected FAQs.
-
Swiper Coverflow:
- A customizable Swiper.js instance with a coverflow effect.
- Allows users to swipe through slides with grab cursor support.
-
Video Scroll Highlight:
- When the video section comes into view, it triggers a background and video highlight.
- Removes the highlight when the section is out of view.
-
Responsive Video Loader:
- Dynamically loads a different video based on screen width.
- A landscape video is loaded for small screens (<=1024px), and a default video for larger screens.
-
Horizontal Scroller Animation:
- Scrollable containers in the horizontal direction with duplicated content for continuous scrolling.
- The animation is enabled unless the user prefers reduced motion.
-
HTML Structure:
- Add
faq-item
class for each FAQ section, with headers insideh2
orh4
tags. - Include a Swiper container with
swiper-container
class for slides. - Add a
.mv-container
section for the video, with the video element inside.middle-video
.
- Add
-
CSS:
- Apply basic styles for the
.faq-item
,.swiper-container
, and the.mv-container
classes. - Include necessary Swiper.js styles.
- Apply basic styles for the
-
JavaScript:
- The JavaScript will toggle FAQ visibility on click and manage the Swiper and scroll effects.
- Video source will switch dynamically based on the screen size during window resize.
- [Swiper.js](https://swiperjs.com/) for the coverflow effect.
- Clone the repository.
- Ensure Swiper.js is included in your project by either linking to the CDN or installing it locally.
- Adjust the HTML structure as needed for FAQ items, the video section, and swiper containers.
- Link the script in your HTML file, or include it as an external JS file.
As an intern project, the HTML and CSS have been structured to be simple and extendable. You can adjust the Swiper configuration, FAQ toggle behaviors, and video responsiveness as per project needs.
Feel free to modify the scroller animations, FAQ transitions, or video handling for performance optimizations.